grant replication slave on *.* to 'root_replication'@'192.168.0.174' identified by 'root';
log_bin=master_binary_log
server_id=1
replicate_do_db=kcml
flush tables with read lock;
show master status;
unlock tables;
my.ini
server_id=2
slave-skip-errors=1062,1053,1146
change master to master_host='192.168.0.200',master_user='root_replication', master_password='root', master_port=3306, master_log_file='master_binary_log.000001', master_log_pos=3274;
start slave;