zoukankan      html  css  js  c++  java
  • 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的话 根据错误编号查找原因
  • 相关阅读:
    C++之类和对象
    PHP程序设计基础
    PHP函数和MySQL数据库
    HTML语言基础
    文件和目录1(文件属性和权限)
    文件IO
    查找
    使用tcpdump抓包实例
    导入模块的2种方法
    ansible启用sudo执行命令
  • 原文地址:https://www.cnblogs.com/wzjbk/p/6266899.html
Copyright © 2011-2022 走看看