首先满足Mysql主从复制的三个条件
-
从库服务器能连通主库
-
主库开启binlog日志(设置log-bin参数)
-
主从server-id不同
1.主库配置,首先我们进入到etc目录下,会存在my.cnf文件
2.编辑咱们的my.cnf文件,开启log_bin(也就是binlog),添加server_id(保证不冲突即可),添加sync-binlog(每次执行一些写入性操作,都与磁盘保持同步),binlog-ignore-db(表示哪些数据库不需要做同步)
保存一下,我们重启mysql
systemctl restart mysqld
3.主库给从库授权
grant replication slave on . to 'root'@'%' identified by 'root';
grant all privileges on . to 'root'@'%' identified by 'root';
执行刷新命令:flush privileges;
4.查看主库的状态,那么到此,我们的主库master已经配置完毕
show master status;
这个名字我们需要记住,在后面的从库配置当中需要使用到
从库配置
1.修改my.cnf文件
配置完成后重新启动
systemctl restart mysqld
登录mysql
show slave status;查看从机状态
2.指向主机Ip
change master to master_host='192.168.240.128',master_port=3306,master_user='root',master_password='root',master_log_file='mysql-bin.000005',master_log_pos=154;
配置完成之后,我们在主数据库所建的表和数据库,都会更新到从数据库