mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-10 05:00:45 +00:00

* Remove trailing spaces * PR-665 - Remove trailing spaces - Updated not stable test t/pt-online-schema-change/preserve_triggers.t - Updated utilities in bin directory * PR-665 - Remove trailing spaces - Fixed typos * PR-665 - Remove trailing spaces - Fixed typos --------- Co-authored-by: Sveta Smirnova <sveta.smirnova@percona.com>
16 lines
680 B
SQL
16 lines
680 B
SQL
STOP SLAVE FOR CHANNEL '';
|
|
SET GLOBAL master_info_repository = 'TABLE';
|
|
SET @@GLOBAL.relay_log_info_repository = 'TABLE';
|
|
SET @@GLOBAL.ENFORCE_GTID_CONSISTENCY=ON;
|
|
SET @@GLOBAL.GTID_MODE = OFF_PERMISSIVE;
|
|
SET @@GLOBAL.GTID_MODE = ON_PERMISSIVE;
|
|
SET @@GLOBAL.GTID_MODE = ON;
|
|
|
|
CHANGE MASTER TO master_host='127.0.0.1', master_port=2900, master_user='msandbox', master_password='msandbox', master_auto_position=1 FOR CHANNEL 'masterchan1';
|
|
|
|
CHANGE MASTER TO master_host='127.0.0.1', master_port=2901, master_user='msandbox', master_password='msandbox', master_auto_position=1 FOR CHANNEL 'masterchan2';
|
|
|
|
START SLAVE for channel 'masterchan1';
|
|
START SLAVE for channel 'masterchan2';
|
|
|