ROAR User Guide   »   Managing Jobs on Roar Collab
Feedback [ + ]

Managing Jobs on Roar Collab

To check the status of submitted jobs, use the “squeue” command. Using `squeue` without any options lists all pending and running jobs on the cluster. To see only the jobs submitted by a particular user id, add the following: 

$ squeue -u <user_id> 

 

To cancel jobs, use `scancel`. To cancel a single job, specify the job id:

$ scancel <job_id> 

 

To cancel all jobs by a specific user, specify a user id: 

$ scancel -u <user_id>