Skip to main content

Monitoring your jobs

You can see if your job is running using the Slurm squeue command. It shows the current active and pending jobs. Look for the job under your userid and note the jobid at the beginning of the row.

squeue

You can see more detail about your job by using the Slurm scontrol command. 

scontrol show job <JOBID>

Where JOBID is a unique, sequential number assigned to your job by Slurm listed in the squeue command.

You can cancel your job using the scancel command.

scancel <JOBID>