Show pageOld revisionsBacklinksFold/unfold allBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. {{indexmenu_n>3}} ====== Cancelling jobs ====== Jobs can be cancelled using the [[http://slurm.schedmd.com/scancel.html|scancel]] command, which expects a job id as its argument: <code> $ scancel 2782 </code> If you have a job that starts multiple tasks/steps, it is also possible to only send a signal to one of these steps. The following command can be used to send a TERMINATE signal to step 3 of job 2782: <code> scancel --signal=TERM 2786.1 </code> It is also possible to kill all your current pending **and** running jobs. <code> $ scancel --user=p123456 </code> Finally, you can also select multiple of your jobs for cancellation. For instance, if you want to kill all your waiting (pending) jobs in the partition “short”, you could use the following command: <code> $ scancel --state=PENDING --user=p123456 --partition=short </code> Log In