⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.124
Server IP:
50.28.103.30
Server:
Linux host.jcukjv-lwsites.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software:
nginx/1.28.0
PHP Version:
8.3.12
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
www
/
server
/
mysql
/
mysql-test
/
r
/
View File Name :
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';