Install the RLM license server
Download the license server from here.
Then extract the rlm folder from the archive and move them to a directory on your (license server) machine. You can put the rlm folder anywhere but we recommendRLMライセンスサーバーをインストールする
こちらからライセンスサーバーをダウンロードしてください。
次に、アーカイブからrlmフォルダを抽出して、それらをユーザーの(ライセンスサーバー)マシン上のディレクトリに移動します。 rlmフォルダは、どこにでも配置することができます。どちらでも推奨します。
コード ブロック | ||
---|---|---|
| ||
/opt/Toolchefs/ |
If you have already a RLM server of another vendor running on your machine, you should copy only the toolchefs.set file to the existing RLM location.
Install the license files
Copy the license file to the rlm folder. This is the directory that contains the RLM executable. The license server automatically loads all .lic files from this directory.
If you install new licenses when the server is already running please remember to restart the server.
Starting the RLM license server at boot time on Linux
The rlm rfolder includes a rlmd script that you can use as a startup script.
Note: Do the following as root or using sudo.
1 Edit rlmd and specify the path of the rlm folder:ユーザーのマシン上で他のベンダのRLMサーバーが既に稼働している場合は、toolchefだけをコピーする必要があります。ファイルを既存のRLMの場所に設定します。
ライセンスファイルをインストールする
ライセンスファイルをrlmフォルダにコピーします。これは、RLM実行ファイルを含むディレクトリです。ライセンスサーバーは、このディレクトリからすべての.licファイルを自動的にロードします。
サーバーが既に稼働している時に新しいライセンスをインストールする場合は、必ずサーバーを再起動してください。
Linuxを起動時にRLMライセンスサーバーを起動する
rlmフォルダには、起動スクリプトとして使用できるrlmスクリプトが含まれています。
注:rootまたはsudoを使用して以下を実行してください。
1 rlmdを編集して、rlmフォルダのパスを指定します。
コード ブロック | ||
---|---|---|
| ||
rlmdir=/opt/Toolchefs/rlm |
2
Copy rlmd to:rlmdを次の場所にコピーします。
コード ブロック | ||
---|---|---|
| ||
cp /opt/Toolchefs/rlm/rlmd /etc/rc.d/init.d/ (Red Hat, CentoOS, Fedora)
cp /opt/Toolchefs/rlm/rlmd /etc/init.d/ (Debian, Ubuntu, SUSE) |
3 Add the rlm service with chkconfig:chkconfigを使用してrlmサービスを追加します。
コード ブロック | ||
---|---|---|
| ||
chkconfig --add rlmd |
4 Make sure rlmd is enabledrlmdが有効であることを確認します。
コード ブロック | ||
---|---|---|
| ||
chkconfig rlmd on |
5 Start the license server:ライセンスサーバーを起動します。
コード ブロック |
---|
service rlmd start |
...