mysql5.5主从同步配置文件_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的话 根据错误编号查找原因

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值