Fixing lmgrd Startup Issues on Linux
- Aug 12
- 2 min read

Downloading the Abaqus FlexNet Installation Files for Linux (Part_SIMULIA_FlexNet – SIMULIA Abaqus 20xx FP.CFA.2xxx – Linux64) and installing them often works as expected. However, when trying to start the FlexNet License daemon lmgrd on the Linux server, the process might abort and return the following error:Â
lmgrd: No such file or directoryÂ
Although the FlexNet installer runs smoothly, this error typically points to a missing dependency required by the lmgrd binary to initialize properly.Â
Diagnosing the IssueÂ
A common cause of this startup failure is the absence of Linux Standard Base (LSB) components, which are required for some FlexNet binaries to execute. You can verify whether the required shared objects are present by using the following command:Â
$ ldd lmgrd linux-vdso.so.1 => (0x00007fffeafef000) libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f5ba86fb000) libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f5ba83f2000) libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f5ba81dc000) libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f5ba7e12000) libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f5ba7c0e000) /lib64/ld-lsb-x86-64.so.3 => /lib64/ld-linux-x86-64.so.2 (0x00007f5ba8918000)Â
If the lineÂ
/lib64/ld-lsb-x86-64.so.3
No such file or directory appears, then lmgrd cannot be launched because it relies on that shared object to resolve its runtime environment.Â
You can also directly test if the file is missing with:Â
$ ls -l /lib64/ld-lsb-x86-64.so.3 ls: cannot access ‘/lib64/ld-lsb-x86-64.so.3’
No such file or directoryÂ
Fixing the Problem: Installing LSBÂ
The solution is to install the LSB compatibility layer for your Linux distribution. The exact package depends on your system:Â
For Debian/Ubuntu-based systems:Â
sudo apt-get install lsbÂ
For Red Hat-based systems:Â
sudo yum install redhat-lsb-coreÂ
After installation, check again:Â
$ ls -l /lib64/ld-lsb-x86-64.so.3 lrwxrwxrwx 1 root root 20 Aug 17 12:21 /lib64/ld-lsb-x86-64.so.3 -> ld-linux-x86-64.so.2Â
Once this dependency is resolved, lmgrd should launch correctly and you can continue with the license server setup.Â
Final Steps for License Server ConfigurationÂ
After resolving the missing LSB issue:Â
Add your .lic license file to the appropriate locationÂ
Configure environment variables (like LM_LICENSE_FILE)Â
Use the FlexNet License Administrator to define the service and launch itÂ
Â
Need Help with Your Abaqus License Server?
This issue typically only appears once, during initial installation or after a Linux OS update. Still, it’s a good practice to verify LSB availability when deploying FlexNet on new environments. If you're setting up your license server or facing issues after installation, we’re here to help. Reach out using the contact form or email us at sales@4realsim.com for tailored support in the Benelux, UK, or US.