python mysql導庫加入主從同步叢集執行個體介紹

來源:互聯網
上載者:User
指令碼可以在任意機器上執行(需要安裝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!!!!!!!!!!!"

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.