• 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的话 根据错误编号查找原因
  • 相关阅读:
    shell awk
    spl_autoload_register array参数
    install xdebug on fedora
    call_user_func
    转载 shell sort
    通过nginx + lua来统计nginx上的监控网络请求和性能
    nginx 知识点
    python 发送带附件的 邮件
    xdebug php
    关于ZendStudio 10.5的破解
  • 原文地址:https://www.cnblogs.com/wzjbk/p/6266899.html
Copyright © 2020-2023  润新知