Created
May 26, 2015 14:29
-
-
Save williameliel/e2e7d051cb5a2663b814 to your computer and use it in GitHub Desktop.
Restore MySQL - Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [[ ! "$(/usr/sbin/service mysql status)" =~ "start/running" ]] | |
then | |
/usr/sbin/service mysql start | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment