操作系统:CentOS Linux release 7.7.1908 (Core)
MySQL版本:8.0.11
主库创建用户:
create user 'repl'@'%' identified by 'repl';
grant replication slave,replication client on *.* to 'repl'@'%';
flush privileges;
从库执行:
change master to
master_user='repl',
操作系统:CentOS Linux release 7.7.1908 (Core)
MySQL版本:8.0.11
主库创建用户:
create user 'repl'@'%' identified by 'repl';
grant replication slave,replication client on *.* to 'repl'@'%';
flush privileges;
从库执行:
change master to
master_user='repl',