summaryrefslogtreecommitdiff
path: root/parallel/sge/MESSAGE
blob: 006e65fccf40948965a8927c218496a9893c1783 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
===========================================================================
$NetBSD: MESSAGE,v 1.3 2006/10/19 11:51:27 markd Exp $

You will need to add the following lines to /etc/services:

sge_qmaster     536/tcp
sge_execd       537/tcp

In addition after installation, you need to set up SGE.  To configure the
master node of the cluster, run:

        cd ${SGE_ROOT} && ./install_qmaster -csp

For the back-end compute nodes, run:

        cd ${SGE_ROOT} && ./install_execd

Additionally, you will want to add the following lines in /etc/csh.cshrc:

# Sun Grid Engine Setup
if ( -f ${SGE_ROOT}/default/common/settings.csh  ) then
        source ${SGE_ROOT}/default/common/settings.csh
endif

and the following in /etc/profile:

if [ -f ${SGE_ROOT}/default/common/settings.sh ]; then
        . ${SGE_ROOT}/default/common/settings.sh
fi

===========================================================================