How To Restart APACHE AND SQL AFTER EVERY 15 MINUTES ? if cron job how can i add cron job These 2 jobs i add in crontab -e BUT NOT WORKING
*/15 * * * * echo "sudo service apache2 restart’ */15 * * * * echo "sudo service mysql restart’
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.
You need to “sudo -s” for your shell (where you’ll become root) and then crontab -e to put these two jobs:
Run the commands on the shell to make sure your services are named as such (sometimes it’s httpd instead of apache2 and mysqld instead of mysql).
Cheers