zoukankan      html  css  js  c++  java
  • Windows下MySQL的主从热备(自动同步)配置

    本配置方法适用于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
  • 相关阅读:
    v-cloak无效解决方法
    堆栈,托管堆,堆,栈的区别
    2018-3-25至2018-8-9的日语笔记
    windows下远程连接redis
    windows cmd打开共享文件夹
    C#数据分组
    安装pyspider遇到的坑
    argument 1 must be 2-item sequence, not int
    python,pip环境变量设置
    python编程学习--Pygame
  • 原文地址:https://www.cnblogs.com/taven/p/2593983.html
Copyright © 2011-2022 走看看