Skip to content
This repository was archived by the owner on Dec 19, 2024. It is now read-only.

Commit 2592a58

Browse files
committed
Added link to OBS
1 parent 1d47000 commit 2592a58

File tree

1 file changed

+38
-15
lines changed

1 file changed

+38
-15
lines changed

README.md

Lines changed: 38 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11
# Gridengine
22

3+
This project is now also on the [Open Build Service](https://build.opensuse.org/project/show/home:ph03nix:gridengine). There you also find `rpms` for openSUSE (Leap, Tumbleweed), SLES and CentOS.
4+
35
This repository contains a fork of the [Son of Grid Engine](https://arc.liv.ac.uk/trac/SGE) project in conjunction with some documentation and fixes to get the gridengine working on more recent Linux systems.
46

5-
# Building
7+
# Install
8+
9+
First you need to build the source or use the `rpm` packages from the [Open Build Service](https://build.opensuse.org/project/show/home:ph03nix:gridengine). For openSUSE
10+
11+
# For openSUSE Leap 15.1. Modify accordingly
12+
zypper addrepo https://download.opensuse.org/repositories/home:ph03nix:gridengine/openSUSE_Leap_15.1/home:ph03nix:gridengine.repo
13+
zypper refresh
14+
zypper install gridengine
15+
16+
# Building yourself
617

718
Before building make sure you are relaxed and your cup of coffee (or filling of your choice) is full and well temperated.
819

@@ -15,20 +26,6 @@ Then take a deep breath and be prepared for turbulence.
1526

1627
The suggested (working) build options are: `aimk -no-herd -no-java`
1728

18-
We use the following convention
19-
20-
21-
# command as root
22-
$ command as user
23-
## Command
24-
25-
This means
26-
27-
# whoami
28-
root
29-
30-
$ whoami
31-
user
3229

3330
## Open Build Service
3431

@@ -123,6 +120,8 @@ In order to make SGE run, you will need to open the following ports
123120

124121
# Configuration
125122

123+
**Important**: Make sure, your local hostname is present int `/etc/hosts`, otherwise you run into problems during the installation.
124+
126125
## OpenMPI
127126

128127
In case you want to use OpenMPI, make sure to compile OpenMPI with `--with-sge` support.
@@ -181,3 +180,27 @@ Some weird java version not supported errors occurred to me, when building on Op
181180
hadoop.javac.target=1.6
182181

183182
That should fix the issue.
183+
184+
## Hostname-related issues
185+
186+
Symptoms for this issue are or that the qmaster script doesn't start in the installation routine, or you get errors like
187+
188+
error resolving local host: can't resolve host name (h_errno = HOST_NOT_FOUND)
189+
190+
Another symptom are errors related to `act_qmaster`.
191+
192+
193+
### Solution
194+
195+
Make sure, your hostname resolved to your local IP and vice-versa by editing your `/etc/hosts` accordingly
196+
197+
Example (Assuming your hostname is `masternode.gridengine.whatever`)
198+
199+
## /etc/hosts
200+
201+
[...]
202+
# IP-Address Full-Qualified-Hostname Short-Hostname
203+
#
204+
127.0.0.1 localhost
205+
192.168.0.100 masternode.gridengine.whatever
206+

0 commit comments

Comments
 (0)