config root man

Current Path : /usr/opt/mysql57/mysql-test/r/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/opt/mysql57/mysql-test/r/rpl_multi_source_mysqldump_slave.result

call mtr.add_suppression("Invalid .* username when attempting to connect to the master server");
SET GLOBAL master_info_repository='TABLE';
SET GLOBAL relay_log_info_repository='TABLE';
#
# 1. Without having a default channel configured
#
# Create two additional replication channels
CHANGE MASTER TO MASTER_HOST='127.0.0.1', MASTER_LOG_FILE='master-bin-ch1.000001', MASTER_LOG_POS=4 FOR CHANNEL 'ch1';
CHANGE MASTER TO MASTER_HOST='127.0.0.1', MASTER_LOG_FILE='master-bin-ch2.000001', MASTER_LOG_POS=4 FOR CHANNEL 'ch2';
# Execute mysqldump with --dump-slave
CHANGE MASTER TO MASTER_LOG_FILE='master-bin-ch1.000001', MASTER_LOG_POS=4 FOR CHANNEL 'ch1';
CHANGE MASTER TO MASTER_LOG_FILE='master-bin-ch2.000001', MASTER_LOG_POS=4 FOR CHANNEL 'ch2';
# Execute mysql using the dump as input
include/stop_slave.inc
#
# 2. With a default channel configured
#
# Setup the default replication channel
CHANGE MASTER TO MASTER_HOST='127.0.0.1', MASTER_LOG_FILE="master-bin-default.000001", MASTER_LOG_POS=4 FOR CHANNEL '';
# Execute mysqldump with --dump-slave
CHANGE MASTER TO MASTER_LOG_FILE='master-bin-default.000001', MASTER_LOG_POS=4 FOR CHANNEL '';
CHANGE MASTER TO MASTER_LOG_FILE='master-bin-ch1.000001', MASTER_LOG_POS=4 FOR CHANNEL 'ch1';
CHANGE MASTER TO MASTER_LOG_FILE='master-bin-ch2.000001', MASTER_LOG_POS=4 FOR CHANNEL 'ch2';
# Execute mysql using the dump as input
include/stop_slave.inc
RESET SLAVE ALL;
SET @@global.master_info_repository='SAVE_MI_REPO_TYPE';
SET @@global.relay_log_info_repository='SAVE_RLI_REPO_TYPE';

Man Man