Skip to content

Instantly share code, notes, and snippets.

View varinen's full-sized avatar

Oleg Ishenko varinen

View GitHub Profile
@mheadd
mheadd / monitor.sh
Created May 13, 2013 20:00
Simple bash script to check whether MySQL is running.
#!/bin/bash
UP=$(pgrep mysql | wc -l);
if [ "$UP" -ne 1 ];
then
echo "MySQL is down.";
sudo service mysql start
else
echo "All is well.";
fi