MariaDB 10.0 基于GTID实现主从复制

目前公司线上数据库为单点数据库,因业务需求需要部署主从服务

环境

系统版本:CentOS Linux release 7.2.1511 (Core)
内核版本:3.10.0-327.el7.x86_64
MariaDB版本:10.0.25-MariaDB
主服务器:192.168.60.103
从服务器:192.168.60.104

MariaDB安装

这里使用的安装方式如下 CentOS 7 下 MariaDB 10 安装

模拟数据

单台数据库,实时有数据写入。

MariaDB [(none)]> create database test_will;
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> use test_will
Database changed

MariaDB [test_will]> create table mytable (name varchar(20), sex char(1),  birth date, birthaddr varchar(20));
Query OK, 0 rows affected (0.04 sec)

MariaDB [test_will]> quit
Bye

[root@master ~]# vim 1.sh
for i in {1..10000}
do
    mysql test_will -e "insert into mytable  values( 'abc','f','2016-11-11','chian$i');"
    sleep 1
done
[root@master ~]# sh 1.sh &
[1] 8688

修改MariaDB配置

[mysqld]下添加内容

通配

[mysqld]
binlog-format=ROW    # 二进制日志文件格式
log-slave-updates=True    # slave更新是否记入日志
master-info-repository=TABLE
relay-log-info-repository=TABLE   # 此两项为打开从服务器崩溃二进制日志功能,信息记录在事物表而不是保存在文件
sync-master-info=1    # 值为1确保信息不会丢失
slave-parallel-threads=2 #同时启动多少个复制线程,最多与要复制的数据库数量相等即可
binlog-checksum=CRC32    # 效验码
master-verify-checksum=1    # 启动主服务器效验
slave-sql-verify-checksum=1   # 启动从服务器效验
binlog-rows-query-log-events=1    # 用于在二进制日志详细记录事件相关的信息,可降低故障排除的复杂度;

主服务器

除通配外,还需要要以下配置

bind-address = 192.168.60.103    # 监听本机网卡ip
server_id = 103    #  一组主从组里的每个id必须是唯一值,取值为1到2的32次方-1的整数。推荐用ip位数
log-bin = marirdb-bin    # 二进制日志,后面指定存放位置。如果只是指定名字,默认存放在/var/lib/mysql下

MariaDB10.0中,server_id系统变量成为动态变量

备服务器

除通配外,还需要要以下配置

server_id = 104
relay_log = relay-bin    # 中继日志, 后面指定存放位置。如果只是指定名字,默认存放在/var/lib/mysql下

重启

修改完配置后,主从服务器都需要重启MariaDB

systemctl restart mysql

停机时数据写入会失败,丢失

[root@master ~]# systemctl restart mysql
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2 "No such file or directory")
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2 "No such file or directory")
ERROR 2013 (HY000): Lost connection to MySQL server at 'reading initial communication packet', system error: 104 "Connection reset by peer"

验证主服务器

[root@master ~]# mysql -uroot -p
MariaDB [(none)]> show master status;
+--------------------+----------+--------------+------------------+
| File               | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+--------------------+----------+--------------+------------------+
| marirdb-bin.000002 |     1638 |              |                  |
+--------------------+----------+--------------+------------------+
1 row in set (0.00 sec)

此时看到在主服务器上能看到mysql会开始记录日志事件

主服务器进行数据备份

数据库锁表

MariaDB [(none)]> FLUSH TABLES WITH READ LOCK;
Query OK, 0 rows affected (0.00 sec)

开多一个会话窗口

[root@master ~]# mysqldump -uroot -p --all-databases > /tmp/db.sql
[root@master ~]# scp /tmp/db.sql 192.168.60.104:/tmp/db.sql
The authenticity of host '192.168.60.104 (192.168.60.104)' can't be established.
ECDSA key fingerprint is 5d:47:e7:ad:f3:5e:2b:81:ff:02:22:4d:f5:4a:f8:16.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.60.104' (ECDSA) to the list of known hosts.
root@192.168.60.104's password:
db.sql                                                                                           100%  470KB 470.2KB/s   00:00

记录当前日志位置并解锁


MariaDB [(none)]> show master status;
+--------------------+----------+--------------+------------------+
| File               | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+--------------------+----------+--------------+------------------+
| marirdb-bin.000002 |     4458 |              |                  |
+--------------------+----------+--------------+------------------+
1 row in set (0.00 sec)

MariaDB [(none)]> SELECT BINLOG_GTID_POS('marirdb-bin.000002', 4458);
+---------------------------------------------+
| BINLOG_GTID_POS('marirdb-bin.000002', 4458) |
+---------------------------------------------+
| 0-103-22                                    |
+---------------------------------------------+
1 row in set (0.00 sec)

MariaDB [(none)]> UNLOCK TABLES;
Query OK, 0 rows affected (0.00 sec)

这里通过二进制日志跟偏移位置查看此时的GTID值

主服务器数据库赋予同步账户

MariaDB [(none)]> GRANT REPLICATION SLAVE ON *.* TO 'slave_user'@'192.168.60.104' IDENTIFIED BY 'slave';
MariaDB [(none)]> FLUSH PRIVILEGES;

在从MariaDB服务器上还原数据

[root@slave ~]# mysql -uroot -p < /tmp/db.sql

启动同步

MariaDB [(none)]> SET GLOBAL gtid_slave_pos='0-103-22';
Query OK, 0 rows affected (0.01 sec)

MariaDB [(none)]> CHANGE MASTER TO
    -> MASTER_HOST='192.168.60.103',
    -> MASTER_USER='slave_user',
    -> MASTER_PASSWORD='slave',
    -> MASTER_PORT=3306,
    -> MASTER_USE_GTID=slave_pos;
Query OK, 0 rows affected (0.01 sec)

MariaDB [(none)]> START SLAVE;
Query OK, 0 rows affected (0.01 sec)

这里跟以前基于二进制日志进行复制的区别就是:需要设置全局gtid_slave_pos值,并且使用MASTER_USE_GTID语句

查看同步状态,无错误即正常

MariaDB [(none)]> SHOW SLAVE STATUS\G
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.60.103
                  Master_User: slave_user
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: marirdb-bin.000002
          Read_Master_Log_Pos: 38193
               Relay_Log_File: relay-bin.000002
                Relay_Log_Pos: 34393
        Relay_Master_Log_File: marirdb-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: 38193
              Relay_Log_Space: 34688
              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: 103
               Master_SSL_Crl:
           Master_SSL_Crlpath:
                   Using_Gtid: Slave_Pos
                  Gtid_IO_Pos: 0-103-201
1 row in set (0.00 sec)

关闭数据模拟

[root@master ~]# kill -9 8688

验证

[root@master ~]# mysql -uroot -p
Enter password:

MariaDB [(none)]> use test_will
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
MariaDB [test_will]> SELECT COUNT(*) FROM mytable;
+----------+
| COUNT(*) |
+----------+
|      256 |
+----------+
1 row in set (0.00 sec)

[root@slave ~]# mysql -uroot -p
Enter password:

MariaDB [(none)]> use test_will
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
MariaDB [test_will]> SELECT COUNT(*) FROM mytable;
+----------+
| COUNT(*) |
+----------+
|      256 |
+----------+
1 row in set (0.00 sec)

数据量一致,主从同步成功。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,923评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,154评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,775评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,960评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,976评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,972评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,893评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,709评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,159评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,400评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,552评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,265评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,876评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,528评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,701评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,552评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,451评论 2 352

推荐阅读更多精彩内容