• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Mysql数据库的主从同步配置

    Mysql主从同步配置

    配置准备:

    1、安装两个 mysql

    [root@localhost /]# mkdir -p /opt/docker/mysql1/conf/
    [root@localhost /]# mkdir -p /opt/docker/mysql1/logs/
    [root@localhost /]# mkdir -p /opt/docker/mysql1/data/
    [root@localhost /]# docker run -d -p 6894:3306 --name mysql1 \
    
                        -v /opt/docker/mysql1/conf:/etc/mysql/ \
    
                        -v /opt/docker/mysql1/logs:/logs \
    
                        -v /opt/docker/mysql1/data:/var/lib/mysql \
    
                        --privileged=true \
    
                        -e MYSQL_ROOT_PASSWORD=qtykGhC29eP4Smp mysql:5.7

    需要注意复的 mysql /opt/docker/mysql2/data/auto.cnf 目录下有一个 auth.cnf 需要删除

    [root@localhost docker]# cp -r /opt/docker/mysql1/ /opt/docker/mysql2/
    [root@localhost docker]# rm -f /opt/docker/mysql2/data/auto.cnf
    [root@localhost docker]#  docker run -d -p 6895:3306 --name mysql2 \
    
                        -v /opt/docker/mysql2/conf:/etc/mysql/ \
    
                        -v /opt/docker/mysql2/logs:/logs \
    
                        -v /opt/docker/mysql2/data:/var/lib/mysql \
    
                        --privileged=true \
    
                        -e MYSQL_ROOT_PASSWORD=qtykGhC29eP4Smp mysql:5.7

    2、编写mysql配置文件

    [root@localhost docker]# vim /opt/docker/mysql1/conf/my.cnf
    [mysqld]
    # 主库配置
    server-id=1 # 服务 id 唯一性
    log-bin=mysql1-log # 开启二进制日志 
    binlog-format=ROW # 日志记录模式
    replicate-do-db=db_docker # 要复制的数据名称
    # replicate-ignore-db=db_docker # 不需要复制的数据名称
    [root@localhost docker]# vim /opt/docker/mysql2/conf/my.cnf
    [mysqld]
    # 从库配置
    server-id=2   # 服务 id 唯一性
    log-bin=mysql2-log  # 开启二进制日志 
    binlog-format=ROW # 日志记录模式 
    binlog-do-db=db_docker # 要复制的数据名称
    # binlog-ignore-db=db_docker # 不需要复制的数据名称
    [root@localhost docker]# docker restart mysql1
    [root@localhost docker]# docker restart mysql2

    3、初始化数据

    -- 创建数据库
    CREATE DATABASE `db_docker`;
    USE db_docker;
    -- 创建表
    CREATE TABLE `t_docker` (
        `id` INT ( 11 ) NOT NULL AUTO_INCREMENT,
        `name` VARCHAR ( 255 ) DEFAULT NULL,
         PRIMARY KEY ( `id` )
    ) ENGINE = INNODB AUTO_INCREMENT =0 DEFAULT CHARSET = utf8;

    查看主库二进制日志:

    mysql> SHOW MASTER STATUS ;
    +------------------+----------+--------------+------------------+-------------------+
    | File             | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
    +------------------+----------+--------------+------------------+-------------------+
    | mysql-bin.000001 |     2223 |              |                  |                   |
    +------------------+----------+--------------+------------------+-------------------+

    配置从库二进制日志

    CHANGE MASTER TO
    MASTER_HOST="192.168.101.59", # 主机地址 你的主服务器 ip
    Master_Port=6894, # 端口
    MASTER_USER="root", # 账号
    MASTER_PASSWORD="qtykGhC29eP4Smp", # 密码
    MASTER_LOG_FILE="mysql-bin.000001", # 主库二进制文件名 根据实际情况填写
    MASTER_LOG_POS=377; # 主库二进制文件位置 根据实际情况填写
    mysql> START SLAVE;

    从库线程的基本参数的状态信息。从 MySQL 8.0.22 开始,使用 SHOW REPLICA STATUS代替 SHOW SLAVE STATUS,该版本已弃用。在 MySQL 8.0.22 之前的版本中,使用SHOW SLAVE STATUS. 该语句需要REPLICATION CLIENT特权(或已弃用的 SUPER特权)。

    以下两参数为 yes 表示配置成功,否则配置有问题。 Slave_IO_Running: Yes Slave_SQL_Running: Yes

    如果以上两个参数有一个未 No 说明有错误,请查看这个两个字段 Last_Errno Last_Error

    错误内容会记录在 Last_Error 这个字段中,根据错误内容修改。

    mysql>  SHOW SLAVE STATUS \G;
    *************************** 1. row ***************************
                   Slave_IO_State: Waiting for master to send event
                      Master_Host: 192.168.101.59
                      Master_User: root
                      Master_Port: 6894
                    Connect_Retry: 60
                  Master_Log_File: mysql-bin.000001
              Read_Master_Log_Pos: 2223
                   Relay_Log_File: 98394ee2fb48-relay-bin.000004
                    Relay_Log_Pos: 320
            Relay_Master_Log_File: mysql-bin.000001
                 Slave_IO_Running: Yes
                Slave_SQL_Running: Yes
                  Replicate_Do_DB: 
              Replicate_Ignore_DB: 
               Replicate_Do_Table: 
           Replicate_Ignore_Table: 
          Replicate_Wild_Do_Table: 
      Replicate_Wild_Ignore_Table: 
                       Last_Errno: 0
                       Last_Error: 
                     Skip_Counter: 0
              Exec_Master_Log_Pos: 2223
                  Relay_Log_Space: 534
                  Until_Condition: None
                   Until_Log_File: 
                    Until_Log_Pos: 0
               Master_SSL_Allowed: No
               Master_SSL_CA_File: 
               Master_SSL_CA_Path: 
                  Master_SSL_Cert: 
                Master_SSL_Cipher: 
                   Master_SSL_Key: 
            Seconds_Behind_Master: 0
    Master_SSL_Verify_Server_Cert: No
                    Last_IO_Errno: 0
                    Last_IO_Error: 
                   Last_SQL_Errno: 0
                   Last_SQL_Error: 
      Replicate_Ignore_Server_Ids: 
                 Master_Server_Id: 1
                      Master_UUID: aa58ab20-f500-11eb-aa65-0242ac110002
                 Master_Info_File: /var/lib/mysql/master.info
                        SQL_Delay: 0
              SQL_Remaining_Delay: NULL
          Slave_SQL_Running_State: Slave has read all relay log; waiting for more updates
               Master_Retry_Count: 86400
                      Master_Bind: 
          Last_IO_Error_Timestamp: 
         Last_SQL_Error_Timestamp: 
                   Master_SSL_Crl: 
               Master_SSL_Crlpath: 
               Retrieved_Gtid_Set: 
                Executed_Gtid_Set: 
                    Auto_Position: 0
             Replicate_Rewrite_DB: 
                     Channel_Name: 
               Master_TLS_Version:
    
    

    4、其他mysql 相关命令

    mysql>flush tables with read lock;
    mysql>unlock tables;
    mysql> STOP SLAVE;
    mysql> RESET SLAVE;

    mysql 注意事项

    mysql 容器:

    进入容器

    docker exec -it mysql2 /bin/sh
    # mysql2 容器名称 这里也可以是容器 id

    登录 mysql

    mysql -u root -pqtykGhC29eP4Smp
    mysql: [Warning] Using a password on the command line interface can be insecure.
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 9
    Server version: 5.7.35-log MySQL Community Server (GPL)
    
    Copyright (c) 2000, 2021, Oracle and/or its affiliates.
    
    Oracle is a registered trademark of Oracle Corporation and/or its
    affiliates. Other names may be trademarks of their respective
    owners.
    
    Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
    mysql>
    

    my.cnf 配置解释

    [mysqld]
    # 主库配置
    # 指定一个唯一的服务器 ID,可以为0但是服务器会拒绝,所以有效值 1~4294967295 之间。默认值1
    # 官网 https://dev.mysql.com/doc/refman/5.7/en/replication-options.html
    server-id=1
    # 开启二进制日志,二进制文件名称,可以是路径 例如: /logs/mysql/log 但是需要注意给目录文件提权,否则mysql可以无权写入,导致报错。
    log-bin=mysql1-log
    # 日志记录模式 有三种 
    # STATEMENT 导致日志记录基于语句。
    # ROW 导致日志记录基于行。这是默认设置。
    # MIXED 导致日志记录使用混合格式。介于 前两种模式之间
    # 官网 https://dev.mysql.com/doc/refman/5.7/en/binary-log-setting.html
    binlog-format=ROW 
    # 要复制的数据名称,要指定多个数据库,您必须使用此选项的多个实例。
    # 由于数据库名称可以包含逗号,如果您提供逗号分隔列表,则该列表将被视为单个数据库的名称。
    # 多个实例:
    # replicate-do-db=db_docker1 
    # replicate-do-db=db_docker2 
    replicate-do-db=db_docker 
    # 不需要复制的数据名称,配置同上
    # replicate-ignore-db=db_docker # 不需要复制的数据名称

    [mysqld]
    # 从库配置同上 举一反三
    server-id=2   # 服务 id 唯一性
    log-bin=mysql2-log  # 开启二进制日志 
    binlog-format=ROW # 日志记录模式 
    binlog-do-db=db_docker # 要复制的数据名称
    # binlog-ignore-db=db_docker # 不需要复制的数据名称

    auth.cnf 文件

    文件内容 server-uuid

    [auto]
    server-uuid=aa58ab20-f500-11eb-aa65-0242ac110002
    Fatal error: The slave I/O thread stops because master and slave have equal MySQL server UUIDs; these UUIDs must be different for replication to work.

    官网二进制日志配置:https://dev.mysql.com/doc/refman/5.7/en/replication-options-binary-log.html

    到此这篇关于Mysql主从同步配置详情的文章就介绍到这了,更多相关Mysql主从同步配置内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    您可能感兴趣的文章:
    • 解决MySQL主从数据库没有同步的两种方法
    • 一文带你了解Mysql主从同步原理
    • Docker 环境运行 Mysql 和开启 Binlog 配置主从同步的设置方法
    • MySQL 主从同步,事务回滚的实现原理
    • MySQL数据库主从同步实战过程详解
    • MySQL主从同步中的server-id示例详解
    • MySQL数据库的主从同步配置与读写分离
    • MySQL主从同步原理及应用
    上一篇:Mysql实现简易版搜索引擎的示例代码
    下一篇:MySQL数据库Shell import_table数据导入
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Mysql数据库的主从同步配置 Mysql,数据库,的,主从,同步,