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、修改所
共有 0 条评论