Difference between revisions of "CentOS 7.x Rocks cluster 7.0 Son of Grid Engine sge role"

From Notes_Wiki
(Created page with "Home > CentOS > CentOS 7.x > CentOS 7.x Rocks cluster 7.0 > CentOS 7.x Rocks cluster 7.0 Sun Grid Engine sge role =Manager privielges= For a user to submit job with positive priority they must be manager as per SGE. To configure user as manager use: <pre> qconf -am <username> </pre> Refer: * https://docs.oracle.com/cd/E19957-01/820-0698/6ncdvjclp/index.html =Opening qmon= There is graphical qmon tool that comes with SGE. That does not...")
 
m
Line 1: Line 1:
[[Main Page|Home]] > [[CentOS]] > [[CentOS 7.x]] > [[CentOS 7.x Rocks cluster 7.0]] > [[CentOS 7.x Rocks cluster 7.0 Sun Grid Engine sge role]]
[[Main Page|Home]] > [[CentOS]] > [[CentOS 7.x]] > [[CentOS 7.x Rocks cluster 7.0]] > [[CentOS 7.x Rocks cluster 7.0 Sun Grid Engine sge role]]


=Manager privielges=
 
=Manager privileges=
For a user to submit job with positive priority they must be manager as per SGE.  To configure user as manager use:
For a user to submit job with positive priority they must be manager as per SGE.  To configure user as manager use:
<pre>
<pre>
Line 35: Line 36:


After that qmon should open properly.
After that qmon should open properly.
=Checking version of install SGE=
Use below command to check which version of sge is installed:
<pre>
qstat -help 2>&1 | head -1 | cut -f 2 -d " "
</pre>






=Not maintained=
Unfortunately both rocks and SGE do not seem to be maintained.  The official site at http://arc.liv.ac.uk seems to be down.  Best possible alternate options are:


Refer:
; Rocks short SGE reference : http://central-7-0-x86-64.rocksclusters.org/roll-documentation/sge/7.0/
; Older Sun Grid Engine documentation : https://wiki.classe.cornell.edu/pub/Computing/GridEngine/SGE53AdminUserDoc.pdf
; Commands comparing SGE to SLURM :  https://rse-ops.github.io/knowledge/docs/schedulers/sge
; SGE quick start by Star mit cluster : http://star.mit.edu/cluster/docs/0.93.3/guides/sge.html
; Man pages : http://gridscheduler.sourceforge.net/htmlman/manuals.html




[[Main Page|Home]] > [[CentOS]] > [[CentOS 7.x]] > [[CentOS 7.x Rocks cluster 7.0]] > [[CentOS 7.x Rocks cluster 7.0 Sun Grid Engine sge role]]
[[Main Page|Home]] > [[CentOS]] > [[CentOS 7.x]] > [[CentOS 7.x Rocks cluster 7.0]] > [[CentOS 7.x Rocks cluster 7.0 Sun Grid Engine sge role]]

Revision as of 08:31, 11 May 2022

Home > CentOS > CentOS 7.x > CentOS 7.x Rocks cluster 7.0 > CentOS 7.x Rocks cluster 7.0 Sun Grid Engine sge role


Manager privileges

For a user to submit job with positive priority they must be manager as per SGE. To configure user as manager use:

qconf -am <username>

Refer:


Opening qmon

There is graphical qmon tool that comes with SGE. That does not opens by default on node with errors such as:

Warning: Cannot convert string "-adobe-helvetica-medium-r-*--14-*-*-*-p-*-*-*" to type FontStruct
Warning: Cannot convert string "-adobe-helvetica-bold-r-*--14-*-*-*-p-*-*-*" to type FontStruct
Warning: Cannot convert string "-adobe-helvetica-medium-r-*--20-*-*-*-p-*-*-*" to type FontStruct
Warning: Cannot convert string "-adobe-helvetica-medium-r-*--12-*-*-*-p-*-*-*" to type FontStruct
Warning: Cannot convert string "-adobe-helvetica-medium-r-*--24-*-*-*-p-*-*-*" to type FontStruct
Warning: Cannot convert string "-adobe-courier-medium-r-*--14-*-*-*-m-*-*-*" to type FontStruct
Warning: Cannot convert string "-adobe-courier-bold-r-*--14-*-*-*-m-*-*-*" to type FontStruct
Warning: Cannot convert string "-adobe-courier-medium-r-*--12-*-*-*-m-*-*-*" to type FontStruct
Warning: Cannot convert string "-adobe-helvetica-medium-r-*--10-*-*-*-p-*-*-*" to type FontStruct
X Error of failed request:  BadName (named color or font does not exist)
  Major opcode of failed request:  45 (X_OpenFont)
  Serial number of failed request:  1087
  Current serial number in output stream:  1098

To solve this use:

yum -y install xorg-x11-*

After that qmon should open properly.


Checking version of install SGE

Use below command to check which version of sge is installed:

qstat -help 2>&1 | head -1 | cut -f 2 -d " "


Not maintained

Unfortunately both rocks and SGE do not seem to be maintained. The official site at http://arc.liv.ac.uk seems to be down. Best possible alternate options are:

Refer:

Rocks short SGE reference
http://central-7-0-x86-64.rocksclusters.org/roll-documentation/sge/7.0/
Older Sun Grid Engine documentation
https://wiki.classe.cornell.edu/pub/Computing/GridEngine/SGE53AdminUserDoc.pdf
Commands comparing SGE to SLURM
https://rse-ops.github.io/knowledge/docs/schedulers/sge
SGE quick start by Star mit cluster
http://star.mit.edu/cluster/docs/0.93.3/guides/sge.html
Man pages
http://gridscheduler.sourceforge.net/htmlman/manuals.html


Home > CentOS > CentOS 7.x > CentOS 7.x Rocks cluster 7.0 > CentOS 7.x Rocks cluster 7.0 Sun Grid Engine sge role