1
source include/master-slave.inc;
5
grant replication slave on *.* to replicate@localhost identified by 'aaaaaaaaaaaaaaab';
6
grant replication slave on *.* to replicate@127.0.0.1 identified by 'aaaaaaaaaaaaaaab';
11
drop table if exists t1;
13
create table t1(n int);
14
insert into t1 values(24);
15
sync_slave_with_master;
19
delete from mysql.user where user="replicate";
20
sync_slave_with_master;