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的话 根据错误编号查找原因
  • 相关阅读:
    周六,晴转雨
    时间概念
    2014-7-24-早
    2014-7-22
    [SPM_LAB]持续集成实验
    [软件测试_LAB2]使用Selenium进行自动化测试
    [软件测试_hw3]路径覆盖测试
    [软件测试_LAB1]安装junit和hamcrest及其使用
    [软件测试_hw2]Failure&Error
    [SPM_hw1]记一次项目经历
  • 原文地址:https://www.cnblogs.com/wzjbk/p/6266899.html
Copyright © 2011-2022 走看看