0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Ubuntu における Sun Grid Engine の設定方法について

Last updated at Posted at 2017-02-07

概要

Ubuntu 14.04 での Sun Grid Engine 設定についてのメモ

参考になったところ

知らない方法で設定をしていた。
Ubuntu とおそらく Debian ならではの設定方法だとはおもうが、勉強になった。
他のソフトウェアの設定にも使えるかもしれない。

環境変数などの違いがあるかもしれない

以下のスクリプトを投げてみて、正しく実行されるか確認する

# !/bin/bash
date
hostname

特定のキューの特定のホストに向けてジョブを投入する

testthrow.q という名前のキューの
yourdesiredhost に、
myownjob.sh というジョブを投入したいときは

qsub -q testthrow.q@yourdesiredhost myownjob.sh

ヘッドノードがCentOSで、実行ノードがUbuntuの場合きをつけること

/bin/sh

Ubuntuだと、 dash が使われているとおもうので、bashがデフォルトで期待されるならば、そのあたり気をつける。
キューのデフォルトのシェル

変更するときは

qconf -mq testshell.q

これを実行した後、変更ができる。
一応確認したほうがよい。

参考情報

以下のページは、おそらく 2016 年に更新があったか、書かれたと思われる。

英語

日本語

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?