mysql8 主从复制和主主复制

 

  • 主从复制:

主服务器

create user 'masteruser'@'192.168.12.1' identified WITH 'mysql_native_password' by  'xxx';
    grant all privileges on *.* to 'masteruser'@'192.168.12.1' with grant option;
    FLUSH PRIVILEGES;
    show master status;


    从服务器
    

CHANGE MASTER TO MASTER_HOST='192.168.12.2', MASTER_USER='masteruser', MASTER_PASSWORD='xxx', MASTER_LOG_FILE='mysql-bin.000001', MASTER_LOG_POS=155;
start slave;
show slave status\G;

 

  • 主主复制

主服务器配置
    auto_increment_increment=2
    auto_increment_offset=1
从服务器配置
    auto_increment_increment=2
    auto_increment_offset=2
重启mysqld
从服务器
    

create user 'masteruser13'@'192.168.12.2'  identified WITH 'mysql_native_password' by  'xxx';
    grant all privileges on *.* to 'masteruser13'@'192.168.12.2' with grant option;
    FLUSH PRIVILEGES;
    show master status;


主服务器    
    

CHANGE MASTER TO MASTER_HOST='192.168.12.1', MASTER_USER='masteruser13', MASTER_PASSWORD='xxx', MASTER_LOG_FILE='mysql-bin.000006', MASTER_LOG_POS=155;
start slave
show slave status

 

  • 命令参考

stop slave 停止
reset slave all 删除
flush tables with read lock 锁表
unlock tables 接触锁表
show processlist 查看连接
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值