Slurm jobs are allocations of resources assigned to a user for a specified amount of time. The sets of (possibly parallel) tasks within a job are called job steps in Slurm terminology.

Step-by-step guide

  1. You can see your jobs in the queue issuing the command squeue -a -l -u $USER
  2. Check the details of a specific jobid <SLURM_JOB_ID> with scontrol show <SLURM_JOB_ID>
  3. If you want to delete one of your submitted jobs, the command you need is scancel <SLURM_JOB_ID>.
Please check the section Running Jobs of the User Portal and the Slurm Quick Start User Guide for a brief introduction of the Slurm scheduler.