29 lines
1.3 KiB
Plaintext
29 lines
1.3 KiB
Plaintext
include/group_replication.inc
|
|
Warnings:
|
|
Note #### Sending passwords in plain text without SSL/TLS is extremely insecure.
|
|
Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information.
|
|
[connection server1]
|
|
|
|
[SERVER1]
|
|
include/stop_group_replication.inc
|
|
SET SESSION sql_log_bin=0;
|
|
call mtr.add_suppression("Server id not set, will not start slave for channel 'group_replication_applier'");
|
|
call mtr.add_suppression("Error while starting the group replication applier thread");
|
|
call mtr.add_suppression("Unable to initialize the Group Replication applier module.");
|
|
call mtr.add_suppression("The member is leaving a group without being on one");
|
|
call mtr.add_suppression("It was not possible to identify the group replication applier thread");
|
|
SET SESSION sql_log_bin=1;
|
|
SET GLOBAL server_id=0;
|
|
START GROUP_REPLICATION;
|
|
Got one of the listed errors
|
|
include/stop_group_replication.inc
|
|
SET GLOBAL server_id=1;
|
|
include/start_group_replication.inc
|
|
CREATE TABLE t1(c1 INT PRIMARY KEY);
|
|
INSERT INTO t1 VALUES(1);
|
|
INSERT INTO t1 VALUES(2);
|
|
include/rpl_sync.inc
|
|
include/diff_tables.inc [server1:t1, server2:t1]
|
|
DROP TABLE t1;
|
|
include/group_replication_end.inc
|