zoukankan      html  css  js  c++  java
  • mysql主主复制

    主1:192.168.246.130
    主2:192.168.246.131
    
    主1配制:my.conf
      server_id=130
      log-bin=mysql-bin
      binlog-format=mixed
    
      relay-log=mysql-relay
    
    主2配制:my.conf
      server_id=131
      log-bin=mysql-bin
      binlog-format=mixed
    
      relay-log=mysql-relay
    
    主1/2授权:
    grant replication client,replication slave on *.*
    to 'repl'@'192.168.%.%'
    identified by 'repl';
    
    主1:查看主服务器状态值
    mysq> show master status;
    +------------------+----------+--------------+------------------+-------------------+
    | File             | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
    +------------------+----------+--------------+------------------+-------------------+
    | mysql-bin.000001 |      467 |              |                  |                   |
    +------------------+----------+--------------+------------------+-------------------+
    
    change master to 
    master_host='192.168.246.131',
    master_user='repl',
    master_password='repl',
    master_log_file='mysql-bin.000003',
    master_log_pos=467;
    
    
    主2:查看主服务器状态值
    mysq> show master status;
    +------------------+----------+--------------+------------------+-------------------+
    | File             | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
    +------------------+----------+--------------+------------------+-------------------+
    | mysql-bin.000003 |      467 |              |                  |                   |
    +------------------+----------+--------------+------------------+-------------------+
    
    change master to 
    master_host='192.168.246.130',
    master_user='repl',
    master_password='repl',
    master_log_file='mysql-bin.000001',
    master_log_pos=467;
    
    
    
    --记住一个命令
    --reset slave;
    --start slave;
    --stop slave;
    --show slave status G
    --show master status G
  • 相关阅读:
    Alpine linux如何配置和管理自定义服务
    nginx仅允许域名访问禁止IP访问
    解决influxdb的log日志输出位置
    python配置文件INI/TOML/YAML/ENV的区别
    window获取本机所有IP
    学习本来的样子
    yum/编译安装Zabbix 5.0 LTS
    redis问题优化
    解决nginx同端口强制跳转https配置ssl证书问题
    通过DNS验证自动申请nginx证书
  • 原文地址:https://www.cnblogs.com/feiyun126/p/5136442.html
Copyright © 2011-2022 走看看