XtraBackup實現MySQL不停機重做主從複製

來源:互聯網
上載者:User

XtraBackup實現MySQL不停機重做主從複製

不停機實現MySQL主從同步,可以使用mysqldump,但是這個效率比較低,利用XtraBackup來實現這個,效率比較高!

一 xtrabackup安裝:
yum -y install perl perl-devel libaio libaio-devel perl-Time-HiRes perl-DBD-MySQL
rpm -ivh percona-xtrabackup-2.2.12-1.el6.x86_64.rpm

安裝libenv:
wget ftp://rpmfind.net/linux/atrpms/el6-x86_64/atrpms/stable/libev-4.04-2.el6.x86_64.rpm

XtraBackup軟體:
軟體:https://www.percona.com/software/mysql-database/percona-xtrabackup

二 核對mysql的版本:
利用xtrabackup做全備和恢複的,Mysql的版本最好一致!
檢查mysql版本:
 /webser/mysql55/bin/mysql -V
/webser/mysql55/bin/mysql  Ver 14.14 Distrib 5.5.21, for Linux (x86_64) using readline 5.1
三.在master伺服器上線上備份資料庫:
innobackupex --defaults-file=/webser/mysql55/etc/my.cnf --user=root --password=xxxx  /tmp/


備份指定的資料庫:
innobackupex --defaults-file=/webser/mysql55/etc/my.cnf --user=root --password=xxxxx --include='abc.*|salt.*'  /tmp/


注意多個庫之間用“|”符號隔開!


PS:/tmp/為備份目錄;
然後通過scp方式把master上

四.slave機器上操作;
1)關閉mysql服務;
然後清空mysql資料目錄下檔案,例如本機mysql的資料目錄是:/webser/mysql55/var/

2)開始恢複資料
假裝置份檔案的路徑在:/tmp/2016-04-29_16-00-54

恢複記錄檔:
innobackupex --defaults-file=/webser/mysql55/etc/my.cnf --user=root --password=xxxx --apply-log /tmp/2016-04-29_16-00-54/
恢複資料檔案:
innobackupex --defaults-file=/webser/mysql55/etc/my.cnf --user=root --password=xxxx --copy-back /tmp/2016-04-29_16-00-54/

3)修改資料目錄許可權:
chown -R mysql:mysql /webser/mysql55/var 
4)安全方式啟動mysql,查看是否有異常;
/webser/mysql55/bin/mysqld_safe --defaults-file=/webser/mysql55/etc/my.cnf &
如果沒有異常報錯,就關閉mysql
 /webser/mysql55/bin/mysqladmin -uroot -p shutdown


5)查看binlog記錄檔的位置值,做主從同步:
cat /tmp/2016-04-29_16-00-54/xtrabackup_binlog_info
wwwmaster.000458    1022022953
6)在slave機器上做主從相關操作:
CHANGE MASTER TO
MASTER_HOST='192.168.3.xxx',
MASTER_USER='mysql_rep',
MASTER_PASSWORD='xxxx',
MASTER_PORT=33066,
MASTER_LOG_FILE='wwwmaster.000458',
MASTER_LOG_POS=1022022953;
啟動主從同步:
start slave;

碰到的問題:
1)啟動後報錯:
[root@GuoletaoTest02 etc]# /etc/init.d/mysql55 start
Starting MySQL (Percona Server)...The server quit without u[FAILED]PID file (/data/mysql55/var/GuoletaoTest02.pid).
查看錯誤記錄檔:
160429 16:47:12 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.
解決辦法:
 ./mysql_install_db --user=mysql --basedir=/webser/mysql55/ --datadir=/data/mysql55/var/
執行以上語句,問題即可解決!

MySQL管理之使用XtraBackup進行熱備

MySQL開源備份工具Xtrabackup備份部署

MySQL Xtrabackup備份和恢複

用XtraBackup實現MySQL的主從複製快速部署【主不鎖表】

安裝和使用 Percona 推出的 Xtrabackup 備份 MySQL

XtraBackup 的詳細介紹:請點這裡
XtraBackup 的:請點這裡

本文永久更新連結地址:

相關文章

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.