Report this

What is the reason for this report?

MySQL process check with cron

Posted on May 26, 2015

I can run this script fine from the terminal and I get the else but when I have cron set to run it every 5 minutes I am sent a email and the mysql server is restarted every 5 minutes. So I am guessing that the cron job does not have the correct permission to see if the process is running, so it restarts the server and sends an email. How would I get this script to execute from cron and be able to check if mysql process is running?

#!/bin/sh
UP=$(service mysql status | grep 'mysql start/running' | wc -l);
if [ "$UP" -ne 1 ];
then
        sudo service mysql start
        cat /var/db-backup/mysql_restart_email | msmtp someone@gmail.com
else
        echo "All is well.";
fi



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!

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.

Here is my take on the same idea, but I made it so the script checks on other services (like Apache2)

https://github.com/sierracircle/services-checker

works fine on all my DO droplets for the last several months.

when you set up the cronjob, are you running:

sudo crontab -e

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.