首页 后端开发 Python教程 python mysql导库加入主从同步集群实例介绍

python mysql导库加入主从同步集群实例介绍

Mar 22, 2017 am 10:06 AM

脚本可以在任意机器上执行(需要安装mysql,至少是mysql客户端,mysql只能版本为5.6及以上),首先输入源ip,检测源ip上的mysql是否正常运行,再在本机dump mysql数据库,然后将dump文件传输到目的服务器,在目的服务器上导入数据库,最后把从库加入到现用集群中。

[root@master test]# cat finaly_mysql.py

#!/usr/bin/env python

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

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

sour_db=raw_input('please input the source mysql database ip:')

dest_db=raw_input('please input the destination mysql database ip:')

password=raw_input('please input the sour_db root users password :')

def check_port(ip,port):

print "test whether source mysql db is running!"

res=socket.socket(socket.AF_INET, socket.SOCK_STREAM)

res.settimeout(3)

try:

res.connect((ip,port))

print 'Server port 3306 OK!'

print("\033[41;36m  Server port 3306 OK!   \033[0m")

except Exception,e:  

print Exception,":",e

print "break this program"

sys.exit()

res.close()

#查看源库的3306端口是否正常

def begin_dump():

        print "begin dump remote mysql,please waiting...!"

print("\033[41;36m  begin dump remote mysql,please waiting...!   \033[0m")

        hostname=sour_db

        username='root'

        dump='mysqldump -uroot -pXp29at5F37 -h 192.168.3.10 -A -B  > /tmp/dump.sql  && echo $? '

if os.popen(dump).read().strip() == '0':

print "dump result is 0,means dump success"

print("\033[41;36m  dump result is 0,means dump success   \033[0m")

else:

print "\033[1;31;40m%s\033[0m"  % "dump error,exit python file"

sys.exit()

#从本地 dump数据库文件

def trans_dump():

print "   "

local_dir='/tmp' 

        remote_dir='/tmp'

        dest_dir='/tmp'

print " "

print "begin transfer  mysql dump file from local server to destination mysql database server ,please waiting...!"

try:

            t=paramiko.Transport((dest_db,22))

            t.connect(username='root',password=password)

            sftp=paramiko.SFTPClient.from_transport(t)

            files='dump.sql'

            print "\033[1;32;40m%s\033[0m" % "transfer back file,Please wait ...."

            print '    Beginning to transfer file  to  %s  %s ' % (dest_db,datetime.datetime.now())

            print '        Transfering file:',dest_db + ':' + os.path.join(local_dir,files)

            sftp.put(os.path.join(local_dir,files),os.path.join(dest_dir,files))

            t.close()

            print '    transfer All dump file success %s ' % datetime.datetime.now()

        except Exception,e:

            print Exception,"\033[1;31;40m%s\033[0m" % ":", "\033[1;31;40m%s\033[0m" % e

            sys.exit()

#将数据库文件从本地传输到目的服务器,即dest_db

def import_dump():

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

        cur1=conn.cursor()

        cur1.execute("stop slave;")

        cur1.close()

        cur2=conn.cursor()

        cur2.execute("reset master;")

        cur2.close()

        cur3=conn.cursor()

        cur3.execute("reset slave all;")

        cur3.close()

        conn.close()

print "   "

print "begin to import mysql  dump file   ,please waiting...!"

        local_dir='/tmp'

        remote_dir='/tmp'

        dest_dir='/tmp'

import_command = "mysql -uroot -pleyou  < /tmp/dump.sql"

print  '  begin import dump file ,it may take a long time, please be patient !!!'

try:

ssh =paramiko.SSHClient ()

ssh.load_system_host_keys ()

ssh.connect (hostname =dest_db,username ='root',password =password)

stdin, stdout, stderr = ssh.exec_command (import_command) 

      print stderr.read ()

ssh.close ()

        except Exception,e:

                print Exception,":",e

print "import over"

#导入之前先将dest_db的slave 都停掉,因为不知道dest_db的状态,可能之前是个主库,也可能是其他机子的从库。

def final_check_mysql ():

print "   "

print "finally check mysql service   "

        status = True

        try:

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

                cur1=conn.cursor()

                cur1.execute("CHANGE MASTER TO MASTER_HOST='192.168.3.10', MASTER_USER='root', MASTER_PASSWORD='Xp29at5F37', MASTER_AUTO_POSITION=1;")

                cur1.close()

                cur3=conn.cursor()

                cur3.execute("start slave;")

                cur3.close()

print "sleep 10 seconds;"

time.sleep(10)

                cur2=conn.cursor()

                cur2.execute("show slave status;")

                result = cur2.fetchall()

                io_thread= result[0][10]

                sql_thread= result[0][11]

                print io_thread,sql_thread

        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'

                cur2.close()

                conn.close()

        except Exception,e:

                print Exception,"\033[1;31;40m%s\033[0m" % ":", "\033[1;31;40m%s\033[0m" % e

                status = True

        return status

#最后检查新从库的运行状态,同步是否正常

if __name__ == "__main__":

a=check_port(sour_db,3306)

b=begin_dump()

c=trans_dump()

d=import_dump()

e=final_check_mysql()

print "dump file ok!!!!!!!!!!!"

以上是python mysql导库加入主从同步集群实例介绍的详细内容。更多信息请关注PHP中文网其他相关文章!

本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

Video Face Swap

Video Face Swap

使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

如何解决Linux终端中查看Python版本时遇到的权限问题? 如何解决Linux终端中查看Python版本时遇到的权限问题? Apr 01, 2025 pm 05:09 PM

Linux终端中查看Python版本时遇到权限问题的解决方法当你在Linux终端中尝试查看Python的版本时,输入python...

如何在使用 Fiddler Everywhere 进行中间人读取时避免被浏览器检测到? 如何在使用 Fiddler Everywhere 进行中间人读取时避免被浏览器检测到? Apr 02, 2025 am 07:15 AM

使用FiddlerEverywhere进行中间人读取时如何避免被检测到当你使用FiddlerEverywhere...

在Python中如何高效地将一个DataFrame的整列复制到另一个结构不同的DataFrame中? 在Python中如何高效地将一个DataFrame的整列复制到另一个结构不同的DataFrame中? Apr 01, 2025 pm 11:15 PM

在使用Python的pandas库时,如何在两个结构不同的DataFrame之间进行整列复制是一个常见的问题。假设我们有两个Dat...

如何在10小时内通过项目和问题驱动的方式教计算机小白编程基础? 如何在10小时内通过项目和问题驱动的方式教计算机小白编程基础? Apr 02, 2025 am 07:18 AM

如何在10小时内教计算机小白编程基础?如果你只有10个小时来教计算机小白一些编程知识,你会选择教些什么�...

Uvicorn是如何在没有serve_forever()的情况下持续监听HTTP请求的? Uvicorn是如何在没有serve_forever()的情况下持续监听HTTP请求的? Apr 01, 2025 pm 10:51 PM

Uvicorn是如何持续监听HTTP请求的?Uvicorn是一个基于ASGI的轻量级Web服务器,其核心功能之一便是监听HTTP请求并进�...

在Linux终端中使用python --version命令时如何解决权限问题? 在Linux终端中使用python --version命令时如何解决权限问题? Apr 02, 2025 am 06:36 AM

Linux终端中使用python...

如何绕过Investing.com的反爬虫机制获取新闻数据? 如何绕过Investing.com的反爬虫机制获取新闻数据? Apr 02, 2025 am 07:03 AM

攻克Investing.com的反爬虫策略许多人尝试爬取Investing.com(https://cn.investing.com/news/latest-news)的新闻数据时,常常�...

See all articles