Merge from vendor branch TNF:
[pkgsrcv2.git] / parallel / sge / MESSAGE
1 ===========================================================================
2 $NetBSD: MESSAGE,v 1.3 2006/10/19 11:51:27 markd Exp $
3
4 You will need to add the following lines to /etc/services:
5
6 sge_qmaster     6444/tcp
7 sge_execd       6445/tcp
8
9 In addition after installation, you need to set up SGE.  To configure the
10 master node of the cluster, run:
11
12         cd ${SGE_ROOT} && ./install_qmaster -csp
13
14 For the back-end compute nodes, run:
15
16         cd ${SGE_ROOT} && ./install_execd
17
18 Additionally, you will want to add the following lines in /etc/csh.cshrc:
19
20 # Sun Grid Engine Setup
21 if ( -f ${SGE_ROOT}/default/common/settings.csh  ) then
22         source ${SGE_ROOT}/default/common/settings.csh
23 endif
24
25 and the following in /etc/profile:
26
27 if [ -f ${SGE_ROOT}/default/common/settings.sh ]; then
28         . ${SGE_ROOT}/default/common/settings.sh
29 fi
30
31 ===========================================================================