- Revenera Community
- :
- FlexNet Publisher
- :
- FlexNet Publisher Knowledge Base
- :
- Workaround for LSB Component in RHEL
- Mark as New
- Mark as Read
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
Workaround for LSB Component in RHEL
Workaround for LSB Component in RHEL
Introduction
In RHEL9, the LSB component is not offered as part of the supported distribution. Components in
FlexNet Publisher, such as lmgrd, require the LSB-loader. If this is not present, lmgrd and other utilities
will fail to run with a No such file or directory error.
Instructions
As a workaround, specify a soft link to the native loader. The following symlinks have been verified on
RHEL9:
32-bit Linux
sudo bash -c "if [ ! -e /lib/ld-lsb.so.3 ]; then ln -s ld-linux.so.2 /lib/ldlsb.so.3; fi"
64-bit Linux
sudo bash -c "if [ ! -e /lib64/ld-lsb-x86-64.so.3 ]; then ln -s ld-linux-x86-64.so.2 /lib64/ld-lsb-x86-64.so.3; fi“
More Information
From 11.13.1.3, the install_fnp.sh script will issue a warning if LSB is not detected on the host.
Additionally, this script supports a new -nolsb parameter, which sets up the above symlinks.