Linux Verify crond Daemon And Cronjobs Are Running

by on June 8, 2008 · 2 comments· last updated at June 3, 2008

Q. How do I verify or check cronjob is running or not under CentOS / RHEL / Fedora Linux from a shell prompt?

A. cron / crond is daemon to execute scheduled commands (Vixie Cron). Usually, it is started automatically from /etc/init.d on entering multi-user runlevels.

RHEL / CentOS / Fedora Linux Verify Cron Service

You can simply use any one of the following command to see if crond is running or not, enter:
# pgrep crond
OR
# service crond status
Sample output:

crond (pid 4370) is running...

If it is not running type the following two command to start crond:
# chkconfig crond on
# service crond start

Verify cron is running by viewing log file, enter:
# tail -f /var/log/cron

A note about Debian / Ubuntu Linux Cron service

Under Debian and Ububtu Linux cron logs its action logged to the syslog facility i.e. use /var/log/messages file:
# tail -f /var/log/messages
Find out if cron daemon is running or not, enter:
# pgrep cron

See Debian / Linux service management for more information.



You should follow me on twitter here or grab rss feed to keep track of new changes.

Featured Articles:

{ 2 comments… read them below or add one }

1 Tushar December 8, 2009 at 6:30 pm

use ‘jobs’ command

Reply

2 hostingas, svetainiu talpinimas November 16, 2011 at 10:11 pm

thank you. your post saved my ass :D

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <kbd> <blockquote> <pre> <a href="" title="">

Tagged as: , , , , , , , , , , , , , , , ,

Previous Faq:

Next Faq: