Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to list all nodes on SGE cluster?

I am trying to list all nodes on the cluster, but don't know the command. I searched if I use qhost it can list part of nodes. Any idea how to list all nodes?

like image 941
truelies Avatar asked Jun 13 '13 22:06

truelies


People also ask

How do I check my SGE queue?

To display a list of queues within the Rocks cluster, use qconf -sql. If there is a need to disable a particular queue for some reason, e.g scheduling that node for maintenance, use qmod -d Q where Q is the queue name.

What is SGE cluster?

Scheduler, queues and slots SGE includes both a scheduler for allocating resources (CPUs) to computational jobs and a queuing mechanism. Each queue is associated with a number of slots: one computational process runs in each slot; each compute node in the HPC cluster provides one or more slots.


1 Answers

This can be done with the qconf command:

qconf -sh

Alternatively, depending on your configuration you may want:

qconf -sel
like image 80
Nik Avatar answered Oct 12 '22 12:10

Nik