Linux Verify crond Daemon And Cronjobs Are Running

by Vivek Gite on June 8, 2008 · 2 comments

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.

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 2 comments… read them below or add one }

1 Tushar December 8, 2009

use ‘jobs’ command

Reply

2 hostingas, svetainiu talpinimas November 16, 2011

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> <blockquote> <pre> <a href="" title="">
What is 14 + 3 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: