2005-03-30 03:17:46 +02:00
|
|
|
stop slave;
|
|
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
|
|
reset master;
|
|
|
|
reset slave;
|
|
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
|
|
start slave;
|
2006-11-15 10:23:27 +01:00
|
|
|
set @my_slave_net_timeout =@@global.slave_net_timeout;
|
2005-03-30 03:17:46 +02:00
|
|
|
set global slave_net_timeout=100;
|
|
|
|
set global sql_slave_skip_counter=100;
|
2005-05-07 15:55:47 +02:00
|
|
|
show variables like 'slave_compressed_protocol';
|
|
|
|
Variable_name Value
|
|
|
|
slave_compressed_protocol OFF
|
|
|
|
show variables like 'slave_load_tmpdir';
|
|
|
|
Variable_name Value
|
2005-05-18 12:10:43 +02:00
|
|
|
slave_load_tmpdir SLAVE_LOAD_TMPDIR
|
2005-05-07 15:55:47 +02:00
|
|
|
show variables like 'slave_skip_errors';
|
|
|
|
Variable_name Value
|
|
|
|
slave_skip_errors 3,100,137,643,1752
|
2006-11-15 10:23:27 +01:00
|
|
|
set global slave_net_timeout =@my_slave_net_timeout;
|