当前位置:Gxlcms > 数据库问题 > 利用Python监测MySQL主从状态

利用Python监测MySQL主从状态

时间:2021-07-01 10:21:17 帮助过:23人阅读

    探测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主从 脚本

人气教程排行