// Killing Jobs on Discover using slurm 

Cancel a pending or running job

To delete a job, use "scancel" followed by the job ID. For example:

$ scancel 1033320

Cancel all of your pending and running jobs

To delete all your jobs across all partitions simultaneously, in case they are mistakenly submitted, use:

$ scancel --user=myuserid

The --user option terminates all of your jobs, both pending and running.