rpl_init_slave.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 'init_slave';
  8. Variable_name Value
  9. init_slave set global max_connections=500
  10. show variables like 'max_connections';
  11. Variable_name Value
  12. max_connections 500
  13. reset master;
  14. show variables like 'init_slave';
  15. Variable_name Value
  16. init_slave
  17. show variables like 'max_connections';
  18. Variable_name Value
  19. max_connections 100
  20. set global init_connect="set @c=1";
  21. show variables like 'init_connect';
  22. Variable_name Value
  23. init_connect set @c=1
  24. stop slave;