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

조회 수: 10 (최근 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개)

카테고리

Help CenterFile Exchange에서 製品の管理에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

제품


릴리스

R2011a

Community Treasure Hunt

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

Start Hunting!