I am up CentOS 6.
Write to /etc/crontab 2 tasks:
#=========================== SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root HOME=/
*/5 * * * * sh /etc/sphinx/restart.sh */1 * * * * touch /etc/sphinx/test_restart.sh #===========================
Execute >crond start
But appears that as if cron it does not start task. With the aid of the touch I check it did change the time of access to the file.
What I do make wrong?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
Thank you Pablo, it was necessary to add user: <br>*/5 * * * * root sh /etc/sphinx/restart.sh
Have you reviewed <a href=“https://digitalocean.com/community/articles/how-to-use-cron-to-automate-tasks-on-a-vps”>How To Use Cron To Automate Tasks On a VPS</a> or <a href=“https://digitalocean.com/community/articles/how-to-schedule-routine-tasks-with-cron-and-anacron-on-a-vps”>How To Schedule Routine Tasks With Cron and Anacron on a VPS</a>?