Skip to content

Instantly share code, notes, and snippets.

@francescocarlucci
Last active December 25, 2019 11:19
Show Gist options
  • Save francescocarlucci/ffeb3a231ef5d67ae74d25a5433666bf to your computer and use it in GitHub Desktop.
Save francescocarlucci/ffeb3a231ef5d67ae74d25a5433666bf to your computer and use it in GitHub Desktop.
#!/bin/bash
if [[ ! "$(/usr/sbin/service mysql status)" =~ "running" ]]
then
/usr/sbin/service mysql restart
echo "$(date) - mysql restarted." >> /var/log/restart_mysql.log
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment