下文主要給大家?guī)鞰ySQL innobackupex全備是指什么,希望這些內(nèi)容能夠帶給大家實際用處,這也是我編輯MySQL innobackupex全備是指什么這篇文章的主要目的。好了,廢話不多說,大家直接看下文吧。
創(chuàng)新互聯(lián)公司主營墨脫網(wǎng)站建設的網(wǎng)絡公司,主營網(wǎng)站建設方案,app軟件開發(fā)公司,墨脫h5小程序設計搭建,墨脫網(wǎng)站營銷推廣歡迎墨脫等地區(qū)企業(yè)咨詢MySQL innobackupex 全備
#!/usr/local/bin/python3 # -*- coding: utf-8 -*- # Author:xtrdb.net import os import sys import errno import time import logging import getopt import shlex import MySQLdb from subprocess import PIPE, Popen, STDOUT db_host = "116.196.xx.16" db_port = "9036" db_user = "zyl" db_passwd = 'g`QnpqD)P>}25B`^l1h)xxxx' db_name = "mysql" conf = "/data/mysql/mysql9036/my9036.cnf" target_dir = "/data/full_back/test_9036_full_{}".format(time.strftime("%Y%m%d")) pt_xtrabackup = "/usr/bin/innobackupex" # start logging logging.basicConfig( filename="/tmp/innobackupex.log", format="%(asctime)s:%(levelname)s:%(message)s", datefmt="%Y-%m-%d %T", level=logging.INFO, ) logging.info("Start backup...") class Backup(object): def __init__(self,db_conf,user,host,passwd,port,bak_dir): self.user = db_user self.host = db_host self.passwd = db_passwd self.port = db_port if conf == None: self.defaults_file = "/etc/my.cnf" else: self.defaults_file = conf self.target_dir = target_dir def backup(self): command = "{0} --defaults-file={1} --user={2} --password='{3}' --host={4} --port={5} --no-timestamp {6}".format(pt_xtrabackup, self.defaults_file, self.user, self.passwd, self.host, self.port, self.target_dir) print(command) status = runCommand(command) if status == 1: return 1 def applylog(self): command = "%s --defaults-file=%s/backup-my.cnf --apply-log --user=%s --password='%s' --host=%s --port=%s %s" % (pt_xtrabackup, target_dir,self.user, self.passwd, self.host,self.port, target_dir) print(command) status = runCommand(command) if status == 1: return 1 return 0 def runCommand(command): cmd = shlex.split(command) logging.debug('Running back command: "' + command + '"') proc = Popen(cmd, stdout=PIPE, stderr=PIPE) for line in proc.stderr: logging.warning(str(line.strip())) for line in proc.stdout: logging.debug(str(line.strip())) proc.wait() if proc.returncode != 0: logging.critical('Command failed with return code "' + str(proc.returncode) + '"') else: logging.debug('Command successfully finished with returncode "' + str(proc.returncode) + '"') return 0 if __name__ == '__main__': t = Backup("defaults_file","db_user","db_passwd","db_host",9036,"target_dir") t.backup() backup_status = t.applylog() if backup_status == 0: db_size = os.popen("du -sh %s" %target_dir).read().split("\t") logging.info("backup up dbszie: %s" %db_size[0]) logging.info("End backup")
對于以上關于MySQL innobackupex全備是指什么,大家是不是覺得非常有幫助。如果需要了解更多內(nèi)容,請繼續(xù)關注我們的行業(yè)資訊,相信你會喜歡上這些內(nèi)容的。
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
當前名稱:MySQLinnobackupex全備是指什么-創(chuàng)新互聯(lián)
標題路徑:http://www.rwnh.cn/article42/copihc.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供手機網(wǎng)站建設、做網(wǎng)站、服務器托管、外貿(mào)建站、網(wǎng)站內(nèi)鏈、微信小程序
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容