ARCHIVED: In Unix, how do I cancel a batch job?

This content has been archived, and is no longer maintained by Indiana University. Information here may no longer be accurate, and links may no longer be available or reliable.

In Unix, if you scheduled a job with at or batch, you can cancel it at the Unix prompt by entering:

  at -r <jobnum>

Replace <jobnum> with the number of the job that at or batch reported when you submitted the job. On some systems, you may use atrm instead of at -r.

If you don't remember the job number, you can get a listing of your jobs by entering:

  at -l

Each job will be listed with its job number queue and the time it was originally scheduled to execute.

On some systems, the atq command is available to list all the jobs on the system. To use this command, at the Unix prompt, enter:

  atq

If your job is already running, you will need to find the process ID and kill it. On System V implementations (including all UITS central systems at Indiana University), list all running processes by entering:

  ps -fu username 

Replace username with your username. The equivalent BSD command is:

  ps x

Once you have the process ID, enter:

  kill <process ID>

Replace <process ID> with the process ID. If it still will not terminate, try entering:

  kill -9 <process ID>

Note: Other scheduling programs, such as NQS and LoadLeveler, work differently and are not controlled by the same methods. For more information, see the appropriate man pages.

At Indiana University, for personal or departmental Linux or Unix systems support, see Get help for Linux or Unix at IU.

This is document abda in the Knowledge Base.
Last modified on 2018-01-18 08:57:04.