-
-
Save clivewalkden/ffa83f84a0c043b25472a66f423c78fd to your computer and use it in GitHub Desktop.
This simple python script checks to see if MySQL is alive based on mysqladmin output. Tested on 5.5.28-0ubuntu0.12.04.3 under ubuntu user. (c) Bommarito Consulting, LLC; http://bommaritollc.com You might want to run in cron every minute:
$ EDITOR=emacs crontab -e */1 * * * * /path/to/check-mysql.py
This file contains 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
#!/usr/bin/python | |
#@author Bommarito Consulting, LLC; http://bommaritollc.com | |
#@date 2012-12-20 | |
import subprocess | |
import smtplib | |
from email.mime.text import MIMEText | |
fromAddress = '[email protected]' | |
adminEmail = '[email protected]' | |
def sendMessage(emailAddress, errorBuffer): | |
msg = MIMEText("MySQL down.\nError: " + errorBuffer) | |
msg['Subject'] = 'BCLLC MySQL Down' | |
msg['From'] = fromAddress | |
msg['To'] = emailAddress | |
s = smtplib.SMTP('localhost') | |
s.sendmail(fromAddress, emailAddress, msg.as_string()) | |
def main(): | |
statusProc = subprocess.Popen(['mysqladmin', 'status'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) | |
outputBuffer = statusProc.stdout.read().strip() | |
errorBuffer = statusProc.stderr.read().strip() | |
if 'uptime' not in outputBuffer.lower() or len(errorBuffer) > 0: | |
sendMessage(adminEmail, errorBuffer) | |
if __name__ == "__main__": | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment