Linux マシンでライセンス マネージャーを使用できないのはなぜですか?
8 views (last 30 days)
Show older comments
MathWorks Support Team
on 22 Aug 2011
Edited: MathWorks Support Team
on 24 Aug 2022
Linux マシン上でネットワーク ライセンス マネージャーの起動やネットワーク ライセンス マネージャー ユーティリティの使用を試みると、以下のようなエラーが発生します。
./lmgrd: Command not found.
または
/lib64/ld-lsb-x86-64.so.3: bad ELF interpreter: No such file or directory
または
0:00:00 (MLM) FLEXnet Licensing version vXX.X.X.X build XXXX build 81116 i86_lsb MLM: can't initialize: Invalid license file syntax. (-2,40027)
0:00:00 (MLM) EXITING DUE TO SIGNAL 52 Exit reason 20
または
>$ /usr/local/MATLAB/R20XXx/etc/lmstart
Checking license file for local hostname and local hostid . . .
Taking down any existing license manager daemons . . .
No license manager daemons running . . .
Starting license manager . . .
Debug logfile = /var/tmp/lm_TMW.log
License verification completed successfully.
eval: 1: /var/tmp/lm_TMW.ld: not found
Waiting 300 secs for MATLAB vendor daemon to come up . . .
Type your interrupt character (usually CTRL-C) to quit.
Time = 3 secs : still waiting . . .
または
/usr/local/MATLAB/R20XXx/etc/glnxa64/lmhostid: not found
Error: Your hostname matches the hostname on a SERVER line in
your license file but the lmhostid in that line does not.
Your local lmhostid(s) are:
Your hostname is: licserver1.support.mathworks.com
The SERVER line in question is:
-----------------------------------------------
SERVER licserver1.support.mathworks.com 001122DDEE99 27000
-----------------------------------------------
Please stop, fix the problem, and try again . . .
Continue to start up license manager? y/[n])
Accepted Answer
MathWorks Support Team
on 24 Aug 2022
Edited: MathWorks Support Team
on 24 Aug 2022
ライセンス マネージャーは Linux Standard Base (LSB) に依存しており、ライブラリが不足しているシステムで実行すると、これらのエラーが発生することがあります。これを回避するには、オペレーティング システムにシンボリックリンクを追加して、ライセン スマネージャーが標準ライブラリを使用するようにします。シンボリックリンクを追加するには、/lib64 ディレクトリに移動して、次のコマンドを実行します。
ln -s ld-linux-x86-64.so.2 /lib64/ld-lsb-x86-64.so.3
シンボリックリンクを追加したら、次のコマンドを実行して検証します。
ls -l /lib64 | grep lsb
以下のような実行結果が出力されていることを確認します。
lrwxrwxrwx 1 root root 20 Jan 12 18:58 ld-lsb-x86-64.so.3 -> ld-linux-x86-64.so.2*
シンボリックリンクを設定した状態で、再度ライセンス マネージャーの起動を試します。
0 Comments
More Answers (0)
See Also
Categories
Find more on 製品の管理 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!