Greetings. I have created a certain number of cronjobs (15) to be executed at certain time, but Im having issues with the time of the job, for example:
5 1 * * * Command to be executed
Doesn’t run, but if I do something like this:
5 10 * * * Command to be executed
Runs perfectly.
I don’t know if this have something to do with the date/timezone that I setted to my vps.
Thank you for your attention.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
This is an old one, but just stumbled across it now. Hopefully this will be useful for people still landing here from search. What I suspect was happen here was that /var/log/syslog was being rotated after the command was successfully run but before you checked the logs.
logrotate is run daily via it’s entry in /etc/cron.daily/:
# ls /etc/cron.daily/
apport bsdmainutils logrotate mdadm passwd update-notifier-common
apt-compat dpkg man-db mlocate popularity-contest
Scripts in /etc/cron.daily/ are run daily at 06:25:
# grep '/etc/cron.daily' /etc/crontab
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
So if you check /var/log/syslog after that point in time, it may not contain entries from before then. To confirm if this is why you can not find a log entry, check /var/log/syslog.1 for older ones.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.