一、编辑mysql配置文件设置相关参数和配置授权用户
主库1:(192.168.16.3:3306)
编辑配置文件,然后重启服务
[mysqld]
log_error=/var/log/mysql/error.log
log-bin=mysql-bin # 开机bin-log
server-id=1
auto_increment_increment=2 # 自增键步长(根据主主数量配置,防止复制时出现主键冲突)
auto_increment_offset=1 # 自增键偏移量(起始值)
replicate-do-db=test # 指定要复制的数据库
在主1上创建给主2的授权用户 repl1
create user 'repl1'@'192.168.16.2' identified by '111111';
grant replication slave on *.* to 'repl1'@'192.168.16.2' identified by '111111';
flush privileges;
主库2:(192.168.16.2:3306)
编辑配置文件,然后重启服务