Checking the Status of a SLURM Job
First, make sure you have loaded the slurm module:
module load slurm
After you've submitted a job, you can check the status of the job using the squeue command. Issuing this command alone will return the status of every job currently managed by the scheduler. As a result we recommend narrowing the results by user name or job number:
squeue --job <your_job_number>
or
squeue -u <your_user_name>
Or, for a full list of options available to the squeue command issue:
man squeue
Additionally, you can view more verbose information about your job, by using the job id and running the following command:
Note: This only works for jobs that are in currently in queue.
scontrol show job <your_job_number>
To view general information about the history of previous jobs queued, you can run the following command:
sacct -u <your_user_name>
For more information on SLURM and its commands, please also see the official documentation.
For More Information Contact
Still Need Help? The best way to report your issue or make a request is by submitting a ticket.
Request Access or Report an Issue