summaryrefslogtreecommitdiff
path: root/parallel/sge/MESSAGE
diff options
context:
space:
mode:
authordmcmahill <dmcmahill@pkgsrc.org>2004-05-03 00:38:34 +0000
committerdmcmahill <dmcmahill@pkgsrc.org>2004-05-03 00:38:34 +0000
commit383fb8b855284dc8865a4c955ffb06ffe18bafd3 (patch)
treecfcc7482087c06b776feff7e5b868e7830ec654e /parallel/sge/MESSAGE
parenta50c60886c4bacedb047853701748cb0d3561a6d (diff)
downloadpkgsrc-383fb8b855284dc8865a4c955ffb06ffe18bafd3.tar.gz
import sge-5.3p6 (Sun Grid Engine)
The Grid Engine project is an open source community effort to facilitate the adoption of distributed computing solutions. Sponsored by Sun Microsystems and hosted by CollabNet, the Grid Engine project provides enabling distributed resource management software for wide ranging requirements from compute farms to grid computing.
Diffstat (limited to 'parallel/sge/MESSAGE')
-rw-r--r--parallel/sge/MESSAGE30
1 files changed, 30 insertions, 0 deletions
diff --git a/parallel/sge/MESSAGE b/parallel/sge/MESSAGE
new file mode 100644
index 00000000000..e6412400382
--- /dev/null
+++ b/parallel/sge/MESSAGE
@@ -0,0 +1,30 @@
+===========================================================================
+$NetBSD: MESSAGE,v 1.1.1.1 2004/05/03 00:38:34 dmcmahill Exp $
+
+You will need to add the following line to /etc/services:
+
+sge_commd 535/tcp # Sun Grid Engine
+
+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
+
+===========================================================================