Windows下的 mysql 5.5主从同步配置

环境说明:
 
Master:127.0.0.1 3306
Slave:127.0.0.1 3307
 
 
MySQL 的 Master 配置:
 
配置my.ini:
 
[mysqld]
 
# The TCP/IP Port the MySQL Server will listen on
port=3306
 
server-id=200
log-bin=mysql-bin
relay-log=relay-bin
relay-log-index=relay-bin-index
 
*配置好后,重启Master 的 MySQL服务!!!
 
//--------------------------------------------------
 
MySQL 的 Slave 配置:
 
配置my.ini:
 
[mysqld]
 
# The TCP/IP Port the MySQL Server will listen on
port=3306
 
 
server-id = 210
//同步Master的数据库名字
replicate-do-db = test
 
 
*配置好后,重启Slave 的 MySQL服务!!!
 
//--------------------------------------------------
 
登录Slave,然后执行下面命令:
 
mysql> stop slave;
 
mysql> change master to master_host='192.168.1.200',master_user='root',master_password='123456';
 
mysql> start slave;
 
mysql> show slave status;
 
查看这两项是否为YES,yes为正常。
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
 
如果有为no的话 根据错误编号查找原因
原文地址:https://www.cnblogs.com/wzjbk/p/6266899.html