1. 程式人生 > 其它 >使用gtid部署主從複製

使用gtid部署主從複製

環境:
OS:Centos7
db:5.7

1. 從庫安裝mysql
在從庫上部署mysql,配置引數跟主庫保持一致

2 安裝xtrabackup
可以到官網下載安裝介質
percona-xtrabackup-2.4.7-Linux-x86_64.tar.gz
主從庫上都需要進行安裝
解壓安裝
[root@localhost soft]# tar -xvf percona-xtrabackup-2.4.7-Linux-x86_64.tar.gz
[root@localhost soft]# mv percona-xtrabackup-2.4.7-Linux-x86_64 /opt/xtrabackup247

3. 主庫建立同步賬號


grant replication slave, replication client on *.* to 'ureplsync'@'%' identified by '密碼';

4. 備份主庫
[root@host01 bin]#mkdir -p /tmp/xtrabackup_file
[root@host01 bin]#/opt/xtrabackup-2.4.7/bin/innobackupex --defaults-file=/home/middle/mysql57/conf/my.cnf --host=localhost --user=root --password=mysql -P13306 -S /tmp/mysql.sock /tmp/xtrabackup_file

我們將該目錄打包,傳送到目標的機器上
[root@localhost xtrabackup_file]#cd /tmp/xtrabackup_file
[root@localhost xtrabackup_file]#tar -cvf 2022-03-02_20-24-44.tar ./2022-03-02_20-24-44
[root@localhost xtrabackup_file]#scp 2022-03-02_20-24-44.tar [email protected]:/tmp/xtrabackup_file/

5. 備庫恢復
從庫tar檔案解壓縮
[root@localhost xtrabackup_file]# cd /tmp/xtrabackup_file


[root@localhost tmp]# tar -xvf 2022-03-02_20-24-44.tar

6.停掉備庫(之前有主備環境的情況下)
[root@localhost mysql5733_slave]# /home/middle/mysql57/bin/mysqladmin -h localhost -uroot -P13306 -pmysql -S /tmp/mysql.sock shutdown


7.備份data目錄並建立新的data目錄
[root@localhost mysql5733_slave]#cd /home/middle/mysql57
[root@localhost mysql5733_slave]# mv data bakdata
同時建立新的目錄
[root@localhost mysql5733_slave]# mkdir data

8.恢復(備庫也事先安裝好xtrabackup軟體)
[root@localhost ]# /opt/xtrabackup-2.4.7/bin/innobackupex --defaults-file=/home/middle/mysql57/conf/my.cnf --user=root --apply-log /tmp/xtrabackup_file/2022-03-02_20-24-44
完成後會有ok提示
[root@localhost]# /opt/xtrabackup-2.4.7/bin/innobackupex --defaults-file=/home/middle/mysql57/conf/my.cnf --user=root --copy-back --rsync /tmp/xtrabackup_file/2022-03-02_20-24-44
完成後會有ok提示

9.修改許可權
[root@localhost /]# cd /home/middle
[root@localhost opt]# chown -R mysql:mysql ./mysql57

10.啟動從庫
[root@localhost opt]# su - mysql
[mysql@localhost ~]$ /home/middle/mysql57/bin/mysqld_safe --defaults-file=/home/middle/mysql57/conf/my.cnf --user=mysql &

11.從庫設定gtid
mysql> reset slave;
mysql> reset master;
上面步驟目的是去掉從庫備份過來已有的gtid值,下面重新設定gtid的值

mysql> set global gtid_purged='2839d3fc-9960-11ec-bd39-080027e0fbb1:1-16';
上面的值可以從xtrabackup_info檔案中獲取:GTID of the last change '2839d3fc-9960-11ec-bd39-080027e0fbb1:1-16'


mysql> select * from mysql.gtid_executed;
查詢是否與xtrabackup_info記錄的一致

查詢gtid情況
show global variables like '%gtid%';

12.從庫部署同步

change master to master_host='192.168.56.191',
       master_user='ureplsync',
       master_password='mysql',
       master_port=13306,
       master_auto_position=1;

13. 啟動從庫
mysql> start slave;
Query OK, 0 rows affected (0.02 sec)

14.檢視同步情況

mysql> show slave status \G;
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.56.191
                  Master_User: ureplsync
                  Master_Port: 13306
                Connect_Retry: 60
              Master_Log_File: binlog.000007
          Read_Master_Log_Pos: 683
               Relay_Log_File: relaylog-binlog.000002
                Relay_Log_Pos: 850
        Relay_Master_Log_File: binlog.000007
             Slave_IO_Running: Yes
            Slave_SQL_Running: Yes
              Replicate_Do_DB: 
          Replicate_Ignore_DB: information_schema,performance_schema,sys
           Replicate_Do_Table: 
       Replicate_Ignore_Table: 
      Replicate_Wild_Do_Table: 
  Replicate_Wild_Ignore_Table: 
                   Last_Errno: 0
                   Last_Error: 
                 Skip_Counter: 0
          Exec_Master_Log_Pos: 683
              Relay_Log_Space: 1057
              Until_Condition: None
               Until_Log_File: 
                Until_Log_Pos: 0
           Master_SSL_Allowed: No
           Master_SSL_CA_File: 
           Master_SSL_CA_Path: 
              Master_SSL_Cert: 
            Master_SSL_Cipher: 
               Master_SSL_Key: 
        Seconds_Behind_Master: 0
Master_SSL_Verify_Server_Cert: No
                Last_IO_Errno: 0
                Last_IO_Error: 
               Last_SQL_Errno: 0
               Last_SQL_Error: 
  Replicate_Ignore_Server_Ids: 
             Master_Server_Id: 1
                  Master_UUID: 2839d3fc-9960-11ec-bd39-080027e0fbb1
             Master_Info_File: /home/middle/mysql57/data/master.info
                    SQL_Delay: 0
          SQL_Remaining_Delay: NULL
      Slave_SQL_Running_State: Slave has read all relay log; waiting for more updates
           Master_Retry_Count: 86400
                  Master_Bind: 
      Last_IO_Error_Timestamp: 
     Last_SQL_Error_Timestamp: 
               Master_SSL_Crl: 
           Master_SSL_Crlpath: 
           Retrieved_Gtid_Set: 2839d3fc-9960-11ec-bd39-080027e0fbb1:17-18
            Executed_Gtid_Set: 2839d3fc-9960-11ec-bd39-080027e0fbb1:1-18
                Auto_Position: 1
         Replicate_Rewrite_DB: 
                 Channel_Name: 
           Master_TLS_Version: 
1 row in set (0.00 sec)

ERROR: 
No query specified

說明:

主庫修改了ip後,從庫變更,這種方式比pos好處就是,不需要指定開始複製的binlog和pos位置
mysql> stop slave;
mysql> change master to master_host='192.168.56.191';
mysql> start slave;