Wednesday, June 9, 2021

How to install correctly Sametime Community over Domino 11.0.1 FP3 on linux

 During last weeks I'm working mostly on HCL Sametime preparing some meetings environments.

After the release of the 11.6 we have noted the server wasn't able to start if installed after FP3 of Domino 11.0.1.


The issue is similar to the Traveler issue , but we have fixed it in this way:


  1. Domino 11.0.1 install
  2. Fp3 install
  3. Rename 2 libraries inside /opt/hcl/domino/notes/latest/linux 
  4. mv OLDlibcrypto.so.1.1 libcrypto.so.1.1 
  5. mv OLDlibssl.so.1.1 libssl.so.1.1
  6. Install Community 11.6

You could find the related technote here made by the HCL support here

1 comment:

  1. As I blogged here (https://www.assono.de/blog/sametime-11-x-unter-domino-11-0-1-fp3-auf-linux-wirft-fehler-bei-2-bibliotheken, in German), I'd propose to create symbolic links of the lib*-domino files instead of the OLDlib* files, as described in the HCL technote.

    cd /opt/hcl/domino/notes/latest/linux/
    ln -s libssl-domino.so.1.1 libssl.so.1.1
    ln -s libcrypto-domino.so.1.1 libcrypto.so.1.1

    ReplyDelete