内容简介:妙音posted @ 2018年11月25日 13:59 inmysql with tagsmysql 主从 , 11 阅读
妙音posted @ 2018年11月25日 13:59 inmysql with tagsmysql 主从 , 11 阅读
用最简单的例子,教你配置基于GTIDs全局事物id的主从配置。mysql从5.7之后,增加了基于全局事务的主从复制,能够省去,log-bin主从复制找坐标的工作。
环境说明
mysql 8.0.12
过程说明
下面是两台新装的 mysql 启用全局事务id主从复制的过程
1) 启用log-bin,mysql默认是启动的不需要配置
2) master上创建复制用的帐号
3) master/slave启用gtid
4) slave配置master信息
5) slave启动复制
6) 检查配置是否成功
7) 测试效果
master上创建帐号用于复制
create user 'repl'@'%' identified by 'password'; grant replication slave on *.* to 'repl'@'%';
master启用gtid
#/etc/mysql/my.conf server-id=1 gtid_mode=ON enforce-gtid-consistency=true
slave启用gtid
server-id=2 #id不能重复 gtid_mode=ON enforce-gtid-consistency=true
slave配置master信息
change master TO master_host='192.168.50.111', master_port=3307, master_user='repl', master_password='password', master_auto_position=1;
启动slave
start slave
查看slave状态
#Slave_IO_Running/Slave_SQL_Running两个都是yes表示配置成功 show slave status;
测试
在master创建数据库,slave很快同步过来
参考来源
http://www.yongqingking.top/mysql/2018/11/25/gtid-config.html
以上所述就是小编给大家介绍的《mysql配置主从复制基于GTIDs》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Uberland
Alex Rosenblat / University of California Press / 2018-11-19 / GBP 21.00
Silicon Valley technology is transforming the way we work, and Uber is leading the charge. An American startup that promised to deliver entrepreneurship for the masses through its technology, Uber ins......一起来看看 《Uberland》 这本书的介绍吧!