且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Windows下MySQL的主从热备(自动同步)配置

更新时间:2022-09-13 09:17:26

本配置方法适用于5.1之后的版本,个人在5.5上配置成功(5.1之前版本请参考另外的配置说明)

环境说明:
Master:192.168.1.200
Slave:192.168.1.210

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
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\G;

查看这两项是否为YES,yes为正常。
Slave_IO_Running: Yes
Slave_SQL_Running: Yes



本文转自远哥博客园博客,原文链接:http://www.cnblogs.com/taven/archive/2012/07/16/2593983.html,如需转载请自行联系原作者