MySql教程

mysql主主复制

本文主要是介绍mysql主主复制,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
  1. M1和M2服务器
    grant replication slave,replication client on *.* to 'hanlf'@'%' identified by '123456';
  2. M1服务器配置
    vim /etc/my.cnf
    server-id=23
    log-bin=mysql-bin
    gtid-mode=ON
    enforce-gtid-consistency=ON
    auto_increment_increment=2
    auto_increment_offset=1
  3. M2服务器配置
    vim /etc/my.cnf
    server-id=24
    log-bin=mysql-bin
    gtid-mode=ON
    enforce-gtid-consistency=ON
    auto_increment_increment=2
    auto_increment_offset=2
  4. M1服务器
    change master to master_host='192.168.2.23',master_port=3306,master_user='hanlf',master_password='123456',master_auto_position=1;
    start slave;
  5. M2服务器
    change master to master_host='192.168.2.24',master_port=3306,master_user='hanlf',master_password='123456',master_auto_position=1;
    start slave;
这篇关于mysql主主复制的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!