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