Last active
April 11, 2019 17:38
-
-
Save aristidesneto/61cd3fefeb12ac36782281ed50c59979 to your computer and use it in GitHub Desktop.
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 | |
| # Reinicia o MySQL caso de encerramento inesperado | |
| MYSQL=$(lsof -i :3306 | grep mysql | wc -l); | |
| if [ "$UPMYSQL" -le 0 ]; | |
| then | |
| /etc/init.d/mysql restart | |
| fi | |
| ## Crie uma entrada no cron para executar esse script a cada 5 minutos por exemplo ## |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment