zoukankan      html  css  js  c++  java
  • SpringBoot+MyBatis+MySQL读写分离

    一、主从配置

    1.环境

    操作系统:CentOS-7

    MySQL:mysql-5.7

    192.168.15.129  master

    192.168.15.130  slave

    2.主库配置

    • vi /etc/my.cnf在[mysqld]下增加如下两行设置:

      [mysqld]
      log-bin=mysql-bin 
      server-id=1    
      
    • 创建数据同步账户

      CREATE USER 'repl'@'192.168.15.%' IDENTIFIED BY '666666';
      
      GRANT REPLICATION SLAVE ON *.* TO 'repl'@'192.168.15.%';
      
      FLUSH PRIVILEGES;
      
    • 查看matser状态: show master status;

    3.从库配置

    • vi /etc/my.cnf

      [mysqld]
      log-bin=mysql-bin 
      server-id=2
      log-error=/var/log/mysqld.log   # 异常日志存放位置
      
    • 执行同步命令

      change master to master_host='192.168.15.129', master_user='repl', master_password='666666', master_log_file='mysql-bin.000002', master_log_pos=154;
      
      # 设置从库只读
      set global super_read_only=1;
      
      
      # 锁表
      flush tables with read lock;   # 锁表(所有角色都只读,但是会影响主从同步)
      
      # 解锁
      unlock tables;
      
    • 查看slave状态: show slave statusG;

    4.异常解决

    • slave 在主库找不到binlog文件
    [ERROR] Slave I/O for channel '': Got fatal error 1236 from master when reading data from binary log: 'Client requested master to start replication from position > file size', Error_code: 1236
    

    解决方法:

    • master端
    mysql> flush logs;
    Query OK, 0 rows affected (0.02 sec)
    
    mysql> show master status;
    +---------------------+----------+--------------+------------------+-------------------+
    | File                | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
    +---------------------+----------+--------------+------------------+-------------------+
    | dbmaster-bin.000005 |      120 |              |                  |                   |
    +---------------------+----------+--------------+------------------+-------------------+
    1 row in set (0.00 sec)
    

    记住fileposition这两个选项

    • slave端
    mysql> stop slave;
    Query OK, 0 rows affected (0.01 sec)
    
    mysql> change master to master_log_file ='dbmaster-bin.000005',master_log_pos=120;
    Query OK, 0 rows affected (0.01 sec)
    
    mysql> start slave;
    Query OK, 0 rows affected (0.00 sec)
    

    搞定收工!

    二、读写分离

    gitee源码地址:https://gitee.com/kk-dad/msrepl

  • 相关阅读:
    2.WSDL 文档
    SQL SERVER取分组数据第一条:查出每个班级的成绩第一名
    生成随机字符串
    js返回上一页并刷新的几种方法
    SQL 单表查询多个计算的值
    SQL 从字符串中提取数字
    SQL 视图和表
    WebSrevice (2)
    WebSrevice (1)
    CSS中如何选择ul下li的奇数、偶数行
  • 原文地址:https://www.cnblogs.com/qqkkOvO/p/15260810.html
Copyright © 2011-2022 走看看