码迷,mamicode.com
首页 > 数据库 > 详细

利用Python监测MySQL主从状态

时间:2015-08-01 19:13:30      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:python mysql主从 脚本

    探测MySQL主从状态,如果从未同步,则发邮件通知运维人员。利用定时任务秒级监测!

# -*- coding: utf-8 -*
#! /usr/bin/env python

from fabric.api import *
from fabric.colors import *
from fabric.context_managers import *
from fabric.contrib.console import confirm
import string
import smtplib

#client ip
env.port=‘9527‘
env.user=‘dyt‘
env.hosts=[‘192.168.129.138‘,‘192.168.129.139‘]
env.password=‘dyt2015‘

#env.mysql_port = ‘3306‘

@task
def check():
    slave_ip  = run("ip add|grep global")
    for ip in env.hosts:
        if ip in slave_ip:
            slave_ip = ip

    slave_io  = run("mysql -uroot -S /tmp/mysql_3306.sock -e ‘show slave status\G‘|grep Slave_IO_Running:|awk ‘{print $2}‘")
    slave_sql = run("mysql -uroot -S /tmp/mysql_3306.sock -e ‘show slave status\G‘|grep Slave_SQL_Running:|awk ‘{print $2}‘") 

    if slave_io == ‘Yes‘ and slave_sql == ‘Yes‘:
        pass
    else:
        HOST = "smtp.qq.com"
	SUBJECT = "MySQL Master-Slave Warning . "
	TO = "test@qq.com"
	FROM = "test@qq.com"
	text = "%-20s MySQL Master-Slave status : down" % slave_ip 
	BODY = string.join((
        "From: %s" % FROM,
        "To: %s" % TO,
        "Subject: %s" % SUBJECT ,
        "",
        text
        ), "\r\n")
	server = smtplib.SMTP()
	server.connect(HOST,"25")
	server.starttls()
	server.login("test@qq.com","password")
	server.sendmail(FROM, [TO], BODY)
	server.quit()


本文出自 “ˉ、穎濤┃﹎” 博客,请务必保留此出处http://hypocritical.blog.51cto.com/3388028/1680778

利用Python监测MySQL主从状态

标签:python mysql主从 脚本

原文地址:http://hypocritical.blog.51cto.com/3388028/1680778

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!