I went to /var/log/cron but this file is empty.

How to check if crontab is enabled or is running properly or not in ubuntu

thanks

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

If you want to want to know if it's running you can do something like sudo status cron or ps aux | grep cron.

If you want to know if your cron jobs are running, check /var/log/syslog with the process name cron. For example:

Apr 26 21:17:01 example CRON[18055]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
link|improve this answer
Thanks buddy , i searc hed internet and they were sying the log file is /var/log/cron or cron.log , what is that file for – John Apr 28 '10 at 1:19
It all depends on how syslog is configured. Some distributions/Unix will split everything out, other dump just about everything into one file. – David Apr 30 '10 at 17:09
feedback

By default the cron log in ubuntu is located at /var/log/syslog. Use the below command to check the cron entries in this file.

grep cron /var/log/syslog

link|improve this answer
feedback

Your Answer

 
or
required, but never shown