溫馨提示×

溫馨提示×

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

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

mysql主從搭建切換

發(fā)布時(shí)間:2020-08-14 14:28:35 來源:ITPUB博客 閱讀:177 作者:orclwujian 欄目:MySQL數(shù)據(jù)庫


環(huán)境:
172.30.249.156 percona5.6.27 主機(jī)名:tr-mysql 跑著生產(chǎn)環(huán)境的應(yīng)用的虛擬機(jī)
192.168.129.153 percona5.6.27 主機(jī)名:trcloud-gtt-db 新申請的物理機(jī)
工作內(nèi)容:給生產(chǎn)環(huán)境數(shù)據(jù)庫搭建主從架構(gòu),并將主庫放到新申請的物理機(jī)上,連續(xù)停機(jī)不能超過10分鐘
大致流程:搭建主從-->主備切換-->測試結(jié)果,因?yàn)樯a(chǎn)環(huán)境數(shù)據(jù)大概有100多G,考慮到停機(jī)時(shí)間和效率的問題,恢復(fù)備庫使用Xtrabackup方式備份恢復(fù),不使用mysqldump和冷備的方式

一:搭建主從
1、創(chuàng)建復(fù)制賬號(hào)

在Master的數(shù)據(jù)庫中建立一個(gè)備份帳戶:每個(gè)slave使用標(biāo)準(zhǔn)的MySQL用戶名和密碼連接master。進(jìn)行復(fù)制操作的用戶會(huì)授予REPLICATION SLAVE權(quán)限。

命令如下:

mysql> create user 'replicat'@'192.168.129.153' identified by 'passw';
Query OK, 0 rows affected (0.03 sec)
mysql> grant replication slave,super on *.* to 'replicat'@'192.168.129.153';
Query OK, 0 rows affected (0.01 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
建立一個(gè)帳戶backup,并且只能允許從10.211.55.5這個(gè)地址上來登陸,密碼是passw。

2、配置master、slave參數(shù)
主庫:
打開二進(jìn)制日志、指定唯一server ID、
[root@localhost data]# vi /etc/my.cnf
……
log-bin=/data/DB/mysql/mysql-bin
server-id=1
…….
備庫:
打開二進(jìn)制日志、指定唯一server ID
[root@localhost mysql]# vi /etc/my.cnf
……
log-bin=/data/DB/mysql/mysql-bin
server-id=2
…….

3、拷貝并恢復(fù)備庫數(shù)據(jù)
主庫備份:
[root@tr-mysql  backup]# xtrabackup --backup --user=root --datadir=/data/DB/mysql/ --target-dir=/data/backup/20160628bak/
........
160628 09:55:17 Executing UNLOCK TABLES
160628 09:55:17 All tables unlocked
160628 09:55:17 Backup created in directory '/data/backup/20160628bak/'
160628 09:55:17 [00] Writing backup-my.cnf
160628 09:55:17 [00]        ...done
160628 09:55:18 [00] Writing xtrabackup_info
160628 09:55:18 [00]        ...done
xtrabackup: Transaction log of lsn (1696091795) to (1696091805) was copied.
160628 09:55:18 completed OK!
[root@tr-mysql backup]# xtrabackup --prepare --target-dir=/data/backup/20160628bak/    --讓備份數(shù)據(jù)一致
[root@tr-mysql backup]# scp 20160628bak/* root@192.168.129.153:/data/backup/20160628bak/
備庫恢復(fù):
[root@trcloud-gtt-db ~]# rsync -avrp /data/backup/20160628bak/  /data/DB/mysql/
........
sent 6426459950 bytes  received 259 bytes  197737237.20 bytes/sec
total size is 6425674808  speedup is 1.00
[root@trcloud-gtt-db~ ]# chown -R mysql:mysql /data/DB/mysql

4、主庫準(zhǔn)備測試數(shù)據(jù)
mysql> use test;
mysql> create table id(id int(10));
Query OK, 0 rows affected (1.02 sec)
mysql> insert into id values(1);
Query OK, 1 row affected (0.14 sec)

5、設(shè)置復(fù)制進(jìn)程
查看master當(dāng)前binlog文件
mysql> show master status;
+------------------+----------+--------------+------------------+-------------------+
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+-------------------+
| mysql-bin.000002 |      834 |              |                  |                   |
+------------------+----------+--------------+------------------+-------------------+
1 row in set (0.00 sec)
slave創(chuàng)建復(fù)制進(jìn)程
mysql> change master to master_host='172.30.249.156',
    -> master_user='replicat',
    -> master_password='passw',
    -> master_log_file='mysql-bin.000002',
    -> master_log_pos=0;

6、啟動(dòng)slave,查看進(jìn)程
啟動(dòng)
mysql> start slave;
Query OK, 0 rows affected (0.03 sec)
查看slave進(jìn)程
mysql> show slave status\G;
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 172.30.249.156
                  Master_User: replicat
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000002
          Read_Master_Log_Pos: 834
               Relay_Log_File: mysqld-relay-bin.000002
                Relay_Log_Pos: 997
        Relay_Master_Log_File: mysql-bin.000002
             Slave_IO_Running: Yes
            Slave_SQL_Running: Yes
              Replicate_Do_DB:
          Replicate_Ignore_DB:
           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: 834
              Relay_Log_Space: 1171
              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: 7d7ee32c-26cd-11e6-8fe2-fa163ecb3078
             Master_Info_File: /data/DB/mysql/master.info
                    SQL_Delay: 0
          SQL_Remaining_Delay: NULL
      Slave_SQL_Running_State: Slave has read all relay log; waiting for the slave I/O thread to update it
           Master_Retry_Count: 86400
                  Master_Bind:
      Last_IO_Error_Timestamp:
     Last_SQL_Error_Timestamp:
               Master_SSL_Crl:
           Master_SSL_Crlpath:
           Retrieved_Gtid_Set:
            Executed_Gtid_Set:
                Auto_Position: 0
1 row in set (0.00 sec)
在這里主要是看:
                   Slave_IO_Running=Yes
                   Slave_IO_Running=Yes
                   Slave_SQL_Running=Yes
slave的I/O和SQL線程都已經(jīng)開始運(yùn)行,而且Seconds_Behind_Master不再是NULL。日志的位置增加了,意味著一些事件被獲取并執(zhí)行了。如果你在master上進(jìn)行修改,你可以在slave上看到各種日志文件的位置的變化,同樣,你也可以看到數(shù)據(jù)庫中數(shù)據(jù)的變化。
查看master進(jìn)程
mysql> show processlist\G;
........
*************************** 3. row ***************************
           Id: 4
         User: canal
         Host: 172.30.248.95:35966
           db: NULL
      Command: Binlog Dump
         Time: 11821
        State: Master has sent all binlog to slave; waiting for binlog to be updated
         Info: NULL
    Rows_sent: 0
Rows_examined: 0
........
*************************** 5. row ***************************
           Id: 12
         User: replicat
         Host: 192.168.129.153:51948
           db: NULL
      Command: Binlog Dump
         Time: 614
        State: Master has sent all binlog to slave; waiting for binlog to be updated
         Info: NULL
    Rows_sent: 0
Rows_examined: 0

7、測試結(jié)果
slave上查看創(chuàng)建的表和數(shù)據(jù)都有了
mysql> select * from id;
+------+
| id   |
+------+
|    1 |
+------+
1 row in set (0.00 sec)
在master上修改數(shù)據(jù)
mysql> update id set id=2 where id =1;
Query OK, 1 row affected (0.08 sec)
Rows matched: 1  Changed: 1  Warnings: 0
查看slave數(shù)據(jù)
mysql> select * from id;
+------+
| id   |
+------+
|    2 |
+------+
1 row in set (0.00 sec)
測試通過

二:主從切換

1、在從庫(新的主服務(wù)器)上創(chuàng)建用戶
mysql> create user 'replicat'@'172.30.249.156' identified by 'passw';
Query OK, 0 rows affected (0.03 sec)
mysql> grant replication slave,super on *.* to 'replicat'@'172.30.249.156';
Query OK, 0 rows affected (0.01 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

2、從庫(新的主服務(wù)器) 操作
mysql> STOP SLAVE IO_THREAD;
Query OK, 0 rows affected (0.03 sec)
mysql> SHOW PROCESSLIST;
+----+-----------------+-----------+------+---------+------+-----------------------------------------------------------------------------+------------------+-----------+---------------+
| Id | User            | Host      | db   | Command | Time | State                                                                       | Info             | Rows_sent | Rows_examined |
+----+-----------------+-----------+------+---------+------+-----------------------------------------------------------------------------+------------------+-----------+---------------+
|  1 | event_scheduler | localhost | NULL | Daemon  | 2238 | Waiting on empty queue                                                      | NULL             |         0 |             0 |
|  5 | root            | localhost | test | Query   |    0 | init                                                                        | SHOW PROCESSLIST |         0 |             0 |
|  7 | system user     |           | NULL | Connect |  809 | Slave has read all relay log; waiting for the slave I/O thread to update it | NULL             |         0 |             0 |
+----+-----------------+-----------+------+---------+------+-----------------------------------------------------------------------------+------------------+-----------+---------------+
確保狀態(tài)為:has read all relay log
mysql> show slave status \G;
*************************** 1. row ***************************
               Slave_IO_State:
                  Master_Host: 172.30.249.156
                  Master_User: replicat
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000002
          Read_Master_Log_Pos: 1523
               Relay_Log_File: mysqld-relay-bin.000002
                Relay_Log_Pos: 1686
        Relay_Master_Log_File: mysql-bin.000002
             Slave_IO_Running: No
            Slave_SQL_Running: Yes
              Replicate_Do_DB:
          Replicate_Ignore_DB:
           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: 1523
              Relay_Log_Space: 1860
              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: NULL
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: 7d7ee32c-26cd-11e6-8fe2-fa163ecb3078
             Master_Info_File: /data/DB/mysql/master.info
                    SQL_Delay: 0
          SQL_Remaining_Delay: NULL
      Slave_SQL_Running_State: Slave has read all relay log; waiting for the slave I/O thread to update it
           Master_Retry_Count: 86400
                  Master_Bind:
      Last_IO_Error_Timestamp:
     Last_SQL_Error_Timestamp:
               Master_SSL_Crl:
           Master_SSL_Crlpath:
           Retrieved_Gtid_Set:
            Executed_Gtid_Set:
                Auto_Position: 0

3、從庫變主庫
mysql> STOP SLAVE;
Query OK, 0 rows affected (0.03 sec)
mysql> RESET MASTER;
Query OK, 0 rows affected (0.12 sec)
mysql> RESET SLAVE;
Query OK, 0 rows affected (0.11 sec)
mysql>  show master status \G
*************************** 1. row ***************************
             File: mysql-bin.000009
         Position: 120
     Binlog_Do_DB:
 Binlog_Ignore_DB:
Executed_Gtid_Set:
1 row in set (0.00 sec)

4、主庫變從庫
mysql> RESET MASTER;
Query OK, 0 rows affected (3.36 sec)
mysql>  RESET SLAVE;
Query OK, 0 rows affected (0.00 sec)
設(shè)置slave進(jìn)程
mysql> change master to master_host='192.168.129.153',
    -> master_user='replicat',
    -> master_password='passw',
    -> master_log_file='mysql-bin.000009',
    -> master_log_pos=120;
啟動(dòng)slave進(jìn)程
mysql> start slave;

5、修改參數(shù)并重啟
將從庫變成只讀
修改現(xiàn)在的從庫參數(shù)
read-only                           =1
innodb_read_only               =1
super_read_only                 =1  #(擁有super權(quán)限也無法修改)
重啟
[root@tr-mysql mysql]# service mysql restart

6、檢查主從是否都正常

主庫
SHOW PROCESSLIST;
show master status \G
從庫
SHOW PROCESSLIST;
start slave;
show slave status \G

7、測試數(shù)據(jù)
主庫
mysql> update id set id=1 where id=2;
Query OK, 1 row affected (0.02 sec)
Rows matched: 1  Changed: 1  Warnings: 0
從庫
mysql> select * from id;
+------+
| id   |
+------+
|    1 |
+------+
切換成功





向AI問一下細(xì)節(jié)

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

AI