This section describes known Grid Engine module issues.
Workaround: Reload N1 System Manager or remove one of the master hosts from the database by performing the following procedure.
Access the database through /opt/SUNWscs/sbin/db_tool.pl psql for Solaris or /opt/sun/scs/sbin/db_tool.pl psql for Linux.
List the entries for the two masters:
mgmt=>select * from sge_hosts;
appliance_id | type | hostname | spooldir --------------+--------+-----------+------------------------------------- 2 | MASTER | 10-0-0-17 | /gridware/sge/default/spool/qmaster 3 | MASTER | hdco16 | /gridware/sge/default/spool/qmaster (2 rows) |
mgmt=>SELECT * from sge_host_versions;
appliance_id | version --------------+--------- 2 | a1 3 | a1 (2 rows) |
Delete one of the masters from the sge_host_versions table and the sge_hosts table.
mgmt=>delete from sge_host_versions where appliance_id = '3';
DELETE 1 |
mgmt=>SELECT * from sge_host_versions;
appliance_id | version --------------+--------- 2 | a1 (1 row) |
mgmt=>delete from sge_hosts where appliance_id = '3';
DELETE 1 |
mgmt=>select * from sge_hosts;
appliance_id | type | hostname | spooldir --------------+--------+-----------+------------------------------------- 2 | MASTER | 10-0-0-17 | /gridware/sge/default/spool/qmaster (1 row) |
The job type for Grid Engine module jobs are missing. For example, after issuing a load server command to install the GE application, the associated jobs 5, 6, and 7 are missing a job type.
Job ID Date Type Status Owner 7 2006-01-07T08:13:24-0700 Completed root 6 2006-01-07T08:08:22-0700 Completed root 5 2006-01-07T08:04:42-0700 Completed root 4 2006-01-07T07:54:41-0700 Add Base Management Support Completed root 3 2006-01-07T07:53:43-0700 Add Base Management Support Completed root 2 2006-01-07T07:03:04-0700 Discovery Completed root 1 2006-01-07T07:02:10-0700 Discovery Completed root |
Workaround: No workaround exists.
A non-root user with the appropriate Grid Engine privileges cannot create or delete the Grid Engine application on the management server by using the create application and delete application commands, respectively.
Workaround: You must be root on the management server to use the create application or delete application commands.