Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

command

purpose

qsub jobscript

Submit job in script jobscript. Can accept other arguments as discussed above.

qsub -I -l nodes=1:ppn=4

Request interactive job with indicated resources.

qdel jobID

Delete job number jobID. Seems to kill processes on compute nodes cleanly.

qstat

List active jobs. Use "-i" for a different format.

qstat -q

List queue attributes for all queues.

qstat -f jobID

List detailed information for job number jobID.

qnodes

List all nodes and their state and properties.

qnodes -l down

List those nodes currently down.

qnodes -l active or qnodes -l active

List nodes currently used for jobs.

qnodes -l free

List nodes currently free.

qmgr -c "print server"

Print queue configuration details

...