Skip to main content
Skip table of contents

Useful HTCondor commands

Condor has many commands that could be run on the command line. This section we will present the most common ones used in a production environment, which can be executed in a CMD shell. 

Pool Management

CODE
condor_store_cred add

Authenticate a new user to submit jobs to HTCondor on the Submitter

CODE
condor_restart
condor_restart -all

Restart the local HTCondor service resp. on all machines in the pool

CODE
condor_reconfig

Reconfigure local HTCondor service after changing condor_config or condor_config.local without restarting

Check status of pool

CODE
condor_status

Get status of all Nodes

CODE
condor_status -submitter

Get status of all Nodes summarized by active Submitter

CODE
condor_status -avail

See all the machine slots available and not taking jobs

CODE
condor_status -run -constraint "SlotID  == 1"

See all the machine currently running jobs

Managing submitted jobs

CODE
condor_q

Show all jobs for the current user

CODE
condor_q -global

Show all users' jobs in the queue

CODE
condor_q -nobatch

Get status of User's running / idle jobs

CODE
condor_q -nobatch -global

Get status of all Users running / idle jobs:

CODE
condor_q -analyze -long

To see why jobs are not running 

CODE
condor_rm  <job_id>
condor_rm -all

To remove the job from the condor queue

CODE
condor_release <job_id> 
condor_release -all

Release a specific held job in the queue.

 


JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.