真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

MySQL不停機添加從庫

背景

主節(jié)點上線運行了一段時間后,數(shù)據(jù)量日益增大,故需要添加slave節(jié)點來更好地支撐業(yè)務(wù)的發(fā)展。但是,此時也有一定量的用戶了,所以不能把主節(jié)點停機,而是在不停機的情況下添加slave節(jié)點,具體實現(xiàn)方法如下:

目前創(chuàng)新互聯(lián)已為近千家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)頁空間、網(wǎng)站運營、企業(yè)網(wǎng)站設(shè)計、和平網(wǎng)站維護等服務(wù),公司將堅持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。

環(huán)境

防火墻和selinux都關(guān)閉
masterslave
IP 192.168.7.71 192.168.7.72
主機名 master01 slave01
OS CentOS7 CentOS7
MySQL版本 5.7.28 5.7.28

操作步驟

1.在master上對數(shù)據(jù)庫做完全備份,并且拷貝到slave節(jié)點
1.1 查看當前master上的數(shù)據(jù)庫
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| db1                |
| db2                |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
1.2 使用mysqldump工具進行全庫備份
[root@master01 ~]#mysqldump -p -A -F --single-transaction --master-data=1 > /backup/fullbackup_`date +%F_%T`.sql
Enter password: 
[root@master01 ~]#ll /backup/
total 832
-rw-r--r-- 1 root root 849153 Nov 29 20:22 fullbackup_2019-11-29_20:22:04.sql
[root@master01 ~]#scp -p /backup/fullbackup_2019-11-29_20\:22\:04.sql root@192.168.7.72:/data/
fullbackup_2019-11-29_20:22:04.sql                   100%  829KB  14.9MB/s   00:00
1.3 創(chuàng)建授權(quán)復(fù)制賬號
grant replication slave on *.* to repluser@'192.168.7.%' identified by '123.com';
2.在slave節(jié)點將master節(jié)點拷貝過來的完全備份進行導(dǎo)入
2.1 MySQL安裝過程略
2.2 將以下內(nèi)容添加到my.cnf文件中,然后重新啟動數(shù)據(jù)庫。
[mysqld]
server-id = 2
read_only = ON  #設(shè)為只讀,但是對超級用戶無效。
2.3 導(dǎo)入并查看
[root@slave01 ~]#mysql -p < /data/fullbackup_2019-11-29_20\:22\:04.sql 
Enter password: 
[root@slave01 ~]#mysql -p -e "show databases"
Enter password: 
+--------------------+
| Database           |
+--------------------+
| information_schema |
| db1                |
| db2                |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
可以看到已經(jīng)將master節(jié)點上的所有庫導(dǎo)入成功了。
3.在slave節(jié)點執(zhí)行以下命令,指定連接主服務(wù)器的信息,以進行數(shù)據(jù)同步。
3.1 找到完全備份的position信息
[root@slave01 ~]#grep '^CHANGE MASTER' /data/fullbackup_2019-11-29_20\:22\:04.sql 
CHANGE MASTER TO MASTER_LOG_FILE='mysql-bin.000003', MASTER_LOG_POS=154;
3.2 配置連接主服務(wù)的信息(從完全備份的位置之后開始復(fù)制)
[root@slave01 ~]#mysql -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 11
Server version: 5.7.28 MySQL Community Server (GPL)

Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> CHANGE MASTER TO
    ->   MASTER_HOST='192.168.7.71',
    ->   MASTER_USER='repluser',
    ->   MASTER_PASSWORD='123.com',
    ->   MASTER_PORT=3306,
    ->   MASTER_LOG_FILE='mysql-bin.000003',
    ->   MASTER_LOG_POS=154;
Query OK, 0 rows affected, 2 warnings (0.01 sec)
3.3 啟動slave節(jié)點,并查看同步狀態(tài)。
mysql> start slave;
Query OK, 0 rows affected (0.00 sec)

mysql> show slave status\G
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.7.71
                  Master_User: repluser
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000003
          Read_Master_Log_Pos: 154
               Relay_Log_File: slave01-relay-bin.000002
                Relay_Log_Pos: 320
        Relay_Master_Log_File: mysql-bin.000003
             Slave_IO_Running: Yes
            Slave_SQL_Running: Yes
...省略信息...
Slave_IO_Running和Slave_SQL_Running線程都為Yes,表示主從同步成功,至此,在線添加從庫已經(jīng)實現(xiàn)。

當前文章:MySQL不停機添加從庫
文章URL:http://weahome.cn/article/ihisgh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部