Centos – what does mean crond[2113] : (*system*) RELOAD (/etc/cron.d/thecron)

centoscronlogs

crond[2113] : (*system*) RELOAD (/etc/cron.d/mycron)

My cron job is not working and I got the error above in log, What does mean that, how can I know what is going on.

My cron job code:

SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/
* * * * * root php /var/www/html/app/checkUserAction.php

Best Answer

This is not an error. This is the cron daemon informing you that it has detected that /etc/cron.d/mycron was modified and loaded the new version of the file.

Errors from the cron daemon itself will be in the same logs (probably, unless you've reconfigured logging). Errors from the job itself are sent as an email to root; check your email.

Related Question