Report this

What is the reason for this report?

How do you check MySql status via cron

Posted on November 28, 2013

Help, I am trying to setup a cron job that checks mysql status every few minutes and it down restarts it.

Currently running the Ubuntu 12.10 WP Stack and have applied the swapfile tutorial too.

So if yall can help, please do.


Script mysql-check.sh

#!/bin/bash /usr/bin/mysqladmin ping| grep ‘mysqld is alive’ > /dev/null 2>&1 if [ $? != 0 ] then sudo service mysql restart fi

Added to cron

          • sh -x /homesys-checks/mysql-check.sh

However it does not work and have know idea why.



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.

Are you sure that the script’s path is correct? <code>/homesys-checks/mysql-check.sh</code> Shouldn’t <code>/homesys-checks</code> be <code>/home/sys-checks</code>?

How about this in your /etc/crontab

# Restart MySQL if it's down
* * * * *    root      service mysql status || service mysql start

Adapted from : http://superuser.com/questions/611197/auto-restart-mysql-when-it-dies

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.