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

6,136

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.

Share:
6,136

Related videos on Youtube

Emilio Gort
Author by

Emilio Gort

Old Havana

Updated on September 18, 2022

Comments

  • Emilio Gort
    Emilio Gort almost 2 years
    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
    
  • Emilio Gort
    Emilio Gort over 10 years
    thanks...was an php error...I already fixed, how or where can find docs about the cron jobs logs, to know RELOAD, (*system*) and that kind of things