Linux マシンでライセンス マネージャーを使用できないのはなぜですか?

6 ビュー (過去 30 日間)
MathWorks Support Team
MathWorks Support Team 2011 年 8 月 22 日
編集済み: MathWorks Support Team 2022 年 8 月 24 日
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])

採用された回答

MathWorks Support Team
MathWorks Support Team 2022 年 8 月 24 日
編集済み: MathWorks Support Team 2022 年 8 月 24 日
ライセンス マネージャーは 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 件)

タグ

タグが未入力です。

製品


リリース

R2011a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!