rpl_failsafe.result
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. stop slave;
  2. drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
  3. reset master;
  4. reset slave;
  5. drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
  6. start slave;
  7. show variables like 'rpl_recovery_rank';
  8. Variable_name Value
  9. rpl_recovery_rank 1
  10. show status like 'Rpl_status';
  11. Variable_name Value
  12. Rpl_status AUTH_MASTER
  13. create table t1(n int);
  14. drop table t1;
  15. show variables like 'rpl_recovery_rank';
  16. Variable_name Value
  17. rpl_recovery_rank 2
  18. show status like 'Rpl_status';
  19. Variable_name Value
  20. Rpl_status ACTIVE_SLAVE
  21. start slave;
  22. show variables like 'rpl_recovery_rank';
  23. Variable_name Value
  24. rpl_recovery_rank 3
  25. show status like 'Rpl_status';
  26. Variable_name Value
  27. Rpl_status ACTIVE_SLAVE
  28. start slave;
  29. show variables like 'rpl_recovery_rank';
  30. Variable_name Value
  31. rpl_recovery_rank 4
  32. show status like 'Rpl_status';
  33. Variable_name Value
  34. Rpl_status ACTIVE_SLAVE