博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
17.5 测试主从同步
阅读量:6101 次
发布时间:2019-06-20

本文共 2472 字,大约阅读时间需要 8 分钟。

hot3.png

主服务器上

binlog-do-db=            //仅同步指定的库(多个库,可以用“ , ”逗号分隔)——>英文的逗号 , binlog-ignore-db=     //忽略指定库

从服务器上

replicate_do_db=          //仅同步指定的库replicate_ignore_db=     //忽略指定库replicate_do_table=         //仅同步指定的表replicate_ignore_table=    //忽略指定表,    - 例如:有一个临时表,写的数据非常快,数据也大,每天都需要删除这时就可以更新删除这个,那么就不需要每天去做同步 replicate_wild_do_table=   //如aming.%, 支持通配符%  指定同步靠谱的匹配  同步表   replicate_wild_ignore_table=   //如aming.%, 支持通配符%  指定同步靠谱的匹配  忽略表
  • 进行从服务器的配置时尽量使用参数“replicate_wild_”,使匹配更精确,提升使用性能。

测试主从

  • 主上 mysql -uroot aming
  • select count(*) from db;
  • truncate table db;
  • 到从上 mysql -uroot aming
  • select count(*) from db;
  • 主上继续drop table db;
  • 从上查看db表
  1. 在主上机器,进入到mysql
[root@hanfeng ~]# mysql -uroot -phanfengWarning: 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 5562Server version: 5.6.35-log MySQL Community Server (GPL)Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql>
  1. 进入到zrlog库里面
mysql> use zrlog;Reading table information for completion of table and column namesYou can turn off this feature to get a quicker startup with -ADatabase changedmysql>
  1. 查看表,有几个表
  • show tables;
mysql> show tables;+-----------------+| Tables_in_zrlog |+-----------------+| comment         || link            || log             || lognav          || plugin          || tag             || type            || user            || website         |+-----------------+9 rows in set (0.00 sec)mysql>
  1. 查看表有多少行,会看到website里面有9行数据
  • select count(*) from website;
mysql> select count(*) from website;+----------+| count(*) |+----------+|        9 |+----------+1 row in set (0.00 sec)mysql>
  1. 这时候再来查看 从上 的zrlog表上的数据,会看到是一样的
 
  1. 将主机器上的 表做一个删除操作
  • truncate table website;
    • truncate 表示 清空
 
  1. 再来查看 主机器 的表和 从机器 上表都会被删除了
 
  • 若是误操作了,比如在从机器误删除了,再去主上删除相同的数据,就会有可能导致主从失败
    • 这时在从机器上 start slave;
    • 然后在start slave;
    • 再来查看show slave status\G
    • 若是还是失败,则只能 重新做主从了
      • 重新主从
      • 在主机器的数据库上 show mater status; 查看文件大小
      • 然后在从机器上先stop slave;
        • 然后直接change master to master_host='192.168.202.130', master_user='repl', master_password='hanfeng', master_log_file='hf123.000001', master_log_pos=10549;
          • 因为基本还没做什么操作的,数据还是一致的,直接改下数据大小就行
      • 然后在从机器上 start slave;
      • 再来查看 show slave status\G 看是否为两个Yes
      • 若实在只能从头做主从的

转载于:https://my.oschina.net/u/3707314/blog/1611562

你可能感兴趣的文章
vsftpd 相关总结
查看>>
bash complete -C command
查看>>
解决zabbix 3.0中1151端口不能运行问题
查看>>
售前工程师的成长---一个老员工的经验之谈
查看>>
Get到的优秀博客网址
查看>>
dubbo
查看>>
【Git入门之四】操作项目
查看>>
老男孩教育每日一题-第107天-简述你对***的理解,常见的有哪几种?
查看>>
Python学习--time
查看>>
在OSCHINA上的第一篇博文,以后好好学习吧
查看>>
高利率时代的结局,任重道远,前途叵测
查看>>
Debian 6.05安装后乱码
查看>>
欢迎大家观看本人录制的51CTO精彩视频课程!
查看>>
IntelliJ IDEA中设置忽略@param注释中的参数与方法中的参数列表不一致的检查
查看>>
关于软件开发的一些感悟
查看>>
uva 10806
查看>>
纯CSS3绘制的黑色图标按钮组合
查看>>
Linux中环境变量文件及配置
查看>>
从0开始学Flutter
查看>>
mysql操作入门基础之对数据库和表的增删改查
查看>>