批量查看mysql多从状态和修改多从主库指向

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,高可用系列 2核4GB
简介:

本脚本主要解决批量查看mysql多从状态和修改多从主库指向,并打印出执行结果。适用于主库没有做高可用或是做高可用但是V-IP没有漂移到新的主库上的问题。代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import MySQLdb,sys,os,threading,time
user =  'root'
passwd =  '1q2w3e4r'
#mysql执行change master命令的用户名和密码
def log_w(text):#写日志
     logfile =  "slave_res.txt"
     f = open(logfile, 'a+' )
     f.write(text)
     f.close()
def db_conn(host,res,flag):
     text =  "###################_____%s_____###################\n\n"  % host
     try :
         conn = MySQLdb.connect(host = host,port = 6006,user = user,passwd = passwd,charset= "utf8" ,connect_timeout = 5)
         cursor = conn.cursor(cursorclass = MySQLdb.cursors.DictCursor)
         sql =  '' 'show slave status' ''
         cursor.execute(sql)#查看当前同步信息
         alldata = cursor.fetchall()
         if  len(alldata) != 0:#如果没有同步信息则抛错,退出
             if   alldata[0][ 'Master_Log_File' ]==alldata[0][ 'Relay_Master_Log_File' and  alldata[0][ 'Read_Master_Log_Pos' ]==alldata[0][ 'Exec_Master_Log_Pos' ]:
                 text = text +  "OK"    '\t'  'Master_Host:'  + str(alldata[0][ 'Master_Host' ]) +  '   '  + str(alldata[0][ 'Master_Log_File' ]) +  '   '  + str(alldata[0][ 'Relay_Master_Log_File' ]) +  '   '  + str(alldata[0][ 'Read_Master_Log_Pos' ]) +  '   '  + str(alldata[0][ 'Exec_Master_Log_Pos' ]) +  '   '  + str(alldata[0][ 'Seconds_Behind_Master' ])+ '\n'
                 if  flag ==  '1' :
                     try :
                         sql =  "stop slave;"
                         cursor.execute(sql)#停止从库同步
                     except Exception, e:
                         pass
                     sql =  '' 'change master to master_host=' 192.10.100.100 ',master_user=' rep_slave ',master_password=' rEeMAKEreplication6210 ',master_port=6006,master_log_file=' mysql-bin.000100 ',master_log_pos=300;' ''
                     cursor.execute(sql)#执行change master语句
                     sql =  "start slave;"
                     cursor.execute(sql)#开启同步
                     sql =  'show slave status'
                     cursor.execute(sql)#查看最新的同步信息
                     alldata = cursor.fetchall()
                     if   (alldata[0][ 'Slave_IO_Running' ] ==  'Yes' and  (alldata[0][ 'Slave_SQL_Running' ] ==  'Yes' ):
                         text = text +  "OK"    '\t'  'Master_Host:'  + str(alldata[0][ 'Master_Host' ]) +  '   '  + str(alldata[0][ 'Master_Log_File' ]) +  '   '  + str(alldata[0][ 'Relay_Master_Log_File' ]) +  '   '  + str(alldata[0][ 'Read_Master_Log_Pos' ]) +  '   '  + str(alldata[0][ 'Exec_Master_Log_Pos' ]) +  '   '  + str(alldata[0][ 'Seconds_Behind_Master' ])+ '\n'
                     else :
                         text = text +  "Start Slave Error"    '\t'  'Master_Host:'  + str(alldata[0][ 'Master_Host' ]) +  '\t'  'Slave_IO_Running: ' +str(alldata[0][ 'Slave_IO_Running' ]) +  '\t'  'Slave_SQL_Running:'  + str(alldata[0][ 'Slave_SQL_Running' ]) +  '\n'
             else :
                 text = text +  "Slave Error"    '   '  'Master_Host:'  + str(alldata[0][ 'Master_Host' ]) +  '   '  + str(alldata[0][ 'Master_Log_File' ]) +  '   '  + str(alldata[0][ 'Relay_Master_Log_File' ]) +  '   '  + str(alldata[0][ 'Read_Master_Log_Pos' ]) +  '   '  + str(alldata[0][ 'Exec_Master_Log_Pos' ]) + str(alldata[0][ 'Seconds_Behind_Master' ])+ '\n'
         else :
             text = text +  "Error,This host not set slave information"
         cursor.close()
         conn.close()
     except Exception, e:
         text = text +  "Error"  '\t'  + str(e)
     res.append(text)
def start(flag):
         threads = []
         res = []
         host_list = [ '192.168.1.114' , '192.168.1.120' ]
         for  host in host_list:
             t = threading.Thread(target=db_conn,args=(host,res,flag))
             t.setDaemon(True)
             threads.append(t)
         for  i in range(len(threads)):
             threads[i].start()
             time.sleep(0.1)
         for  i in range(len(threads)):
             threads[i].join()
         for  i in res:
             if  "Error"  in i:
                 print  "\033[1;31;40m%s\033[0m"  % i
             else :
                 print  i
             log_w(i)
         if  flag ==  '1' :
             text =  "\nChange master finished"
             print  text
             log_w(text)
         else :
             text =  "\nSHOW SLAVE STATUS complete"
             print  text
             log_w(text)
         text =  "\n\n###################  %s   ###################\n\n"  % time. strftime ( "%Y-%m-%d %H:%M:%S" )
         print  text
         log_w(text)
def main():
     print
     print  "请选择操作类型:\n\n0:查看所有从库的同步状态\n1:改变所有从库的主库指向\n" #.decode( "utf-8" ).encode( "GBK" )
     for  i in range(3):
         choose = raw_input( 'Your choose : ' )
         if  choose ==  '0'  or  choose ==  '1' :
             start(choose)
             break
         else :
             print  "Error,please Enter right noumber again ."
     print
if  __name__== '__main__' :
     main()

113228633.jpg


113228356.jpg



本文转自 lover00751CTO博客,原文链接:http://blog.51cto.com/wangwei007/1317609,如需转载请自行联系原作者


相关实践学习
如何在云端创建MySQL数据库
开始实验后,系统会自动创建一台自建MySQL的 源数据库 ECS 实例和一台 目标数据库 RDS。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
3月前
|
SQL 监控 关系型数据库
MySQL 延迟从库介绍
本文介绍了MySQL中的延迟从库功能,详细解释了其工作原理及配置方法。延迟从库允许从库在主库执行完数据变更后延迟一段时间再同步,主要用于快速恢复误操作的数据。此外,它还可用于备份、离线查询及数据合规性需求。通过合理配置,可显著提升数据库系统的稳定性和可靠性。
167 4
|
3月前
|
SQL 关系型数据库 MySQL
MySQL操作利器——mysql-connector-python库详解
MySQL操作利器——mysql-connector-python库详解
848 0
|
1月前
|
关系型数据库 MySQL
mysql 5.7.x版本查看某张表、库的大小 思路方案说明
mysql 5.7.x版本查看某张表、库的大小 思路方案说明
69 5
|
1月前
|
SQL DataWorks 关系型数据库
阿里云 DataWorks 正式支持 SelectDB & Apache Doris 数据源,实现 MySQL 整库实时同步
阿里云数据库 SelectDB 版是阿里云与飞轮科技联合基于 Apache Doris 内核打造的现代化数据仓库,支持大规模实时数据上的极速查询分析。通过实时、统一、弹性、开放的核心能力,能够为企业提供高性价比、简单易用、安全稳定、低成本的实时大数据分析支持。SelectDB 具备世界领先的实时分析能力,能够实现秒级的数据实时导入与同步,在宽表、复杂多表关联、高并发点查等不同场景下,提供超越一众国际知名的同类产品的优秀性能,多次登顶 ClickBench 全球数据库分析性能排行榜。
|
1月前
|
关系型数据库 MySQL
mysql 5.7.x版本查看某张表、库的大小 思路方案说明
mysql 5.7.x版本查看某张表、库的大小 思路方案说明
37 1
|
2月前
|
存储 关系型数据库 MySQL
PACS系统 中 dicom 文件在mysql 8.0 数据库中的 存储和读取(pydicom 库使用)
PACS系统 中 dicom 文件在mysql 8.0 数据库中的 存储和读取(pydicom 库使用)
43 2
|
2月前
|
Oracle 关系型数据库 MySQL
shell获取多个oracle库mysql库所有的表
请注意,此脚本假设你有足够的权限访问所有提到的数据库。在实际部署前,请确保对脚本中的数据库凭据、主机名和端口进行适当的修改和验证。此外,处理数据库操作时,务必谨慎操作,避免因错误的脚本执行造成数据损坏或服务中断。
43 0
|
4月前
|
监控 关系型数据库 MySQL
mysql误删的performance_schema库
`performance_schema`库是MySQL性能监控的重要工具,误删除后可以通过上述方法尝试恢复。在操作过程中,重启MySQL服务器是最简单的尝试方法。如果这不起作用,可以尝试使用MySQL的初始化选项,但请注意备份数据以防数据丢失。检查MySQL配置也是一个好的步骤,以确保 `performance_schema`没有被禁用。最后,如果有备份,通过恢复备份来恢复 `performance_schema`库是最保险的方法。在操作过程中,确保遵循最佳实践和操作前备份重要数据。
207 5
|
4月前
|
SQL 关系型数据库 MySQL
MySQL主从:延时从库恢复全解
MySQL主从:延时从库恢复全解
|
4月前
|
SQL 监控 关系型数据库
mysql统计数据库大小
通过这些方法,数据库管理员可以有效地监控和规划MySQL数据库的存储需求,确保数据库的稳定运行。
180 3

推荐镜像

更多
下一篇
DataWorks