12

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?

Timur Shtatland
  • 12,024
  • 2
  • 30
  • 47
truelies
  • 145
  • 1
  • 2
  • 9

1 Answers1

16

This can be done with the qconf command:

qconf -sh

Alternatively, depending on your configuration you may want:

qconf -sel
Nik
  • 315
  • 2
  • 8
  • 10
    `qconf -sh` displays the Sun Grid Engine administrative host list ("nodes that submit jobs). `qconf -sel` displays the Sun Grid Engine execution host list (nodes that run jobs). – ostrokach Oct 28 '15 at 04:14