溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Xtrabackup搭建主從

發(fā)布時間:2020-05-31 09:27:06 來源:網(wǎng)絡(luò) 閱讀:702 作者:lovelk 欄目:MySQL數(shù)據(jù)庫

利用innobackupex搭建MySQL從庫

知識準備:

1、在備份InnoDB的過程中,記錄的變更保存于xtrabackup_logfile文件,所以在prepare(–apply-log)的時候,需要重放該部分數(shù)據(jù)到表空間。
2、如果庫中只使用了innodb或者XtraDB引擎,恢復(fù)的時候使用xtrabackup_binlog_pos_innodb文件確定pos信息;
3、如果還有其他引擎(如MyISAM),恢復(fù)的時候使用xtrabackup_binlog_info確定pos信息;
4、innobackupex的過程圖示

Xtrabackup搭建主從

將xtrabackup_logfile中的日志進行重做

Xtrabackup搭建主從

1.這主庫上進行全備,然后進行prepare
backup

[root@zabbix-server 2017-05-22_07-24-07]# innobackupex --defaults-file='/etc/my.cnf' --user=root --password=zhagyilig@mysql --user-memory=2048M  --no-timetamp --backup /opt/

prepare

[root@zabbix-server opt]#innobackupex  --defaults-file='/etc/my.cnf' --apply-log  2017-05-26_15-53-59/

2.將備份進行壓縮,拷貝到slave

tar -czvf 2017-05-26_15-53-59-mysql.tar.gz 2017-05-26_15-53-59/  
scp mysql_full_backup.tar.gz xxx@xxx:/path/

3.在master創(chuàng)建復(fù)制用戶

grant replication slave on *.* to 'rep'@'192.168.21.%' identified by 'replication';   
flush privileges;

4.配置slave

[root@beiyong-server data]# cat xtrabackup_binlog_info 
mysql-bin.000006		216752542  

stop slave;

CHANGE MASTER TO  
MASTER_HOST='192.168.21.161', 
MASTER_PORT=3306,
MASTER_USER='rep', 
MASTER_PASSWORD='replication', 
MASTER_LOG_FILE='mysql-bin.000006',
MASTER_LOG_POS=216752542; 

start slave;

show slave status\G
*************************** 1. row ***************************
           Slave_IO_State: Waiting for master to send event
              Master_Host: 192.168.21.161
              Master_User: rep
              Master_Port: 3306
            Connect_Retry: 60
          Master_Log_File: mysql-bin.000006
      Read_Master_Log_Pos: 216816993
           Relay_Log_File: beiyong-server-relay-bin.000002
            Relay_Log_Pos: 64734
    Relay_Master_Log_File: mysql-bin.000006
         Slave_IO_Running: Yes
        Slave_SQL_Running: Yes
 ....


//利用innobackupex搭建MySQL從庫 結(jié)束。


向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI