Mysql8 MHA高可用搭建之主从复制配置

mysql8主从配置 1、在所有主从上执行,因为每个机器都有可能使master: 2、修改所有主从的配置文件my.cnf: 3、重启这三台机器,分别执行: 4、进入slave01的mysql命令行,执行: 5、遇到的问题总结:
1、在所有主从上执行,因为每个机器都有可能使master:

# mysql -u root -p -h 127.0.0.1
create user 'repl'@'%' identified with mysql_native_password by 'pass456';
#ALTER user 'repl'@'%' IDENTIFIED WITH mysql_native_password BY 'pass456';
select User,authentication_string,Host,plugin from user;
flush privileges;

grant replication slave on *.* to 'repl'@'%';
flush privileges;

2、修改所

Mysql8 MHA高可用搭建之主从复制配置最先出现在Python成神之路

版权声明:
作者:Alex
链接:https://www.techfm.club/p/24448.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>