Skip to content

Instantly share code, notes, and snippets.

@williameliel
Created May 26, 2015 14:29
Show Gist options
  • Save williameliel/e2e7d051cb5a2663b814 to your computer and use it in GitHub Desktop.
Save williameliel/e2e7d051cb5a2663b814 to your computer and use it in GitHub Desktop.
Restore MySQL - Ubuntu
#!/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