Son of Grid Engine

提供: ArchWiki
2021年8月1日 (日) 11:10時点におけるKusanaginoturugi (トーク | 投稿記録)による版 (新規作成(英語版より転載))
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
ナビゲーションに移動 検索に移動

The Son of Grid Engine is a community project to continue Sun's old gridengine.

Installation

インストール the sgeAUR package for both qmaster and execution host.

Configuration

Qmaster host configuration

Use the install_qmaster script to do the qmaster host configuration.

# cd /opt/sge
# ./install_qmaster
# systemctl start sgemaster@your_sge_cell_name.service
# systemctl enable sgemaster@your_sge_cell_name.service

Execution host configuration

Before the execution host configuration, you need to configure your execution host as an administrative host on the qmaster host.

# source /opt/sge/your_sge_cell_name/common/settings.sh
# qconf -ah your_execution_host_name

Then put the sge cell directory from the qmaster host, /opt/sge/your_sge_cell_name, under the same path on your execution host.

Now use the install_execd script to do the execution host configuration.

# cd /opt/sge
# ./install_execd
# systemctl start sgeexecd@your_sge_cell_name.service
# systemctl enable sgeexecd@your_sge_cell_name.service

After configuration, you can remove your execution host from the administrative host list.

# qconf -dh your_execution_host_name