How can I specify what libraries my License Manager binaries will use?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
MathWorks Support Team
el 21 de Mzo. de 2014
Editada: MathWorks Support Team
el 1 de Abr. de 2021
After downloading the FlexNet License Manager binaries from https://www.mathworks.com/support/install/license_manager_files.html I moved the binaries and libraries around to accommodate my current directory structure.
However, after doing so, I am unable to start the Network License Manager and receive the following error:
MLM: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by MLM)
(lmgrd) MLM exited with status 1 signal = 17
(lmgrd) Since this is an unknown status, license server
(lmgrd) manager (lmgrd) will attempt to re-start the vendor daemon.
Respuesta aceptada
MathWorks Support Team
el 31 de Mzo. de 2021
Editada: MathWorks Support Team
el 1 de Abr. de 2021
This error will occur if the provided libraries or the Network License Manager binaries are not present in their default location. When you download just the Network License Manager binaries and libraries from https://www.mathworks.com/support/install/license_manager_files.html they are packaged in a particular way that allows them to utilize each other. If these directories are moved around then the Network License Manager binaries will not be able to automatically locate the necessary libraries.
To resolve this issue, please create the following environment variable: LD_LIBRARY_PATH
This environment variable will contain the location of the libraries that the MATLAB vendor daemon is required to use. After doing so, you can start the Network License Manager in reference to that environment variable:
setenv LD_LIBRARY_PATH {path_to_libraries};{flex path}/lmgrd -c license.dat -l logfile
Example:
setenv LD_LIBRARY_PATH /Libraries/MathWorks;/usr/local/MATLAB/R2014a/etc/glnxa64/lmgrd -c ./license.dat -l ./logfile.txt
You will have to use the above command to start license manager every time.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!