How can I specify what libraries my License Manager binaries will use?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
MathWorks Support Team
le 21 Mar 2014
Modifié(e) : MathWorks Support Team
le 1 Avr 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.
Réponse acceptée
MathWorks Support Team
le 31 Mar 2021
Modifié(e) : MathWorks Support Team
le 1 Avr 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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Startup and Shutdown dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!