以下步骤是真实的测试过程,将其记录下来,与大家共同学习。
一、环境说明:
1、主数据库:
(1)操作系统:安装在虚拟机中的CentOSLinuxrelease7.4.(Core)
[root
localhost~]#cat/etc/redhat-releaseCentOSLinuxrelease7.4.(Core)(2)数据库:Mysql5.7.37
[root
localhost~]#mysql-VmysqlVer14.14Distrib5.7.37,forlinux-glibc2.12(x86_64)usingEditLinewrapper2、从数据库
(1)操作系统:Windows10
(2)数据库:Mysql5.7.23
mysqlselectversion();+------------+
version()
+------------+
5.7.23-log
+------------+
二、主数据库master的修改
1、修改my.cnf
#开启二进制日志log-bin=mysql-bin#设置server-id,服务器唯一ID,可取IP最后一段server-id=41innodb_file_per_table=1#不同步哪些数据库binlog-ignore-db=mysqlbinlog-ignore-db=information_schemabinlog-ignore-db=performance_schema
2、重启mysql
sevicemysqldrestart
3、创建用于同步的用户账号,授权异步复制REPLICATION权限(小心有可能不行啊)
本例中,从数据库