Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smartideasinc/3317f24b28cb503fdc6c6363ddb2ff68 to your computer and use it in GitHub Desktop.
Save smartideasinc/3317f24b28cb503fdc6c6363ddb2ff68 to your computer and use it in GitHub Desktop.
terminal
#!/bin/bash
service=mysql
if (( $(ps -ef | grep -v grep | grep $service | wc -l) > 0 ))
then
echo "$service is running!!!"
else
#/etc/init.d/$service start
echo "Need to start at : $(date)" >> ~/mysql_stat.log
service mysql start
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment