Manuele Pesenti wrote:
dear all,
I have a strange problem with cron it seams it does not respect what I
have eritten in crontab... this is my crontab:
30 6 * * * root *cron/fetch_m_data
0 7 * * * root *default/send_mail_msg
30 14 * * * root *cron/fetch_x_data
0 21 * * * root *cron/fetch_m_data
0 23 * * * root *cron/fetch_x_data
and every function called at the end send me an email so I can
monitorize what happens... the result is that I receive emails every day
who say that:
at 3:00 AM fetch_m_data is performed
at 5:00 AM fetch_x_data is performed
at 12:30 fetch_m_data is performed
at 20:30 fetch_m_data is performed again
send_mail_msg is never performed (it sends another message)
can you help me?
thanks a lot
Manuele
Greeting.
Different time zone perhaps?
fetch_m_data is expected to run at 06:30, but runs at 12:30 (= +6 hours).
fetch_x_data is expected to run at 14:30 but fetch_m_data runs at 20:30
(= +6 hours) (was this a typo - supposed to be fetch_x_data running at
20:30?).
fetch_m_data is expected to run at 21:00, but runs at 03:00 (= +6 hours).
Can't comment on send_mail_msg, but I would expect it to run at 13:00.
Might be somewhere to start looking, especially if it works on one
machine but not another.
Rowdy