当前位置:Gxlcms > Python > 使用python监控mysql的主从复制的方法

使用python监控mysql的主从复制的方法

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

利用python来检查MySQL的主从复制,

有一个注意点是,cur.execute("show slave status;") 不能用cur.execute("show slave status\G;")

result = cur.fetchall()

返回的是个二元数组

result[0] 返回时整个show slave status 状态信息。

result[0][n] 返回具体的某一项。

python代码如下:

#!/usr/bin/env python

#-*- coding: utf-8 -*-

import MySQLdb, socket, paramiko,sys, os,datetime

def final_check_mysql ():

status = True

try:

conn=MySQLdb.connect(host='192.168.3.10',user='root',passwd='Xp29at5F37',db='test')

cur=conn.cursor()

cur.execute("show slave status;")

result = cur.fetchall()

io_thread= result[0][10]

sql_thread= result[0][11]

print io_thread,sql_thread

cur.close()

conn.close()

except Exception,e:

print Exception,":",e

status = True

try:

if io_thread == "Yes" and sql_thread == "Yes":

print 'MySQL master/slave replication status is successfully'

else:

print 'MySQL Master/Slave replication fail,Please check it'

status = False

except Exception,e:

print Exception,":",e

#return status

go=final_check_mysql()

以上就是使用python监控mysql的主从复制的方法的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行