21 lines
1.3 KiB
Plaintext
21 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]
|
|
|
|
############################################################
|
|
# 1. Check group_replication_allow_local_disjoint_gtids_join
|
|
SET GLOBAL group_replication_allow_local_disjoint_gtids_join= ON;
|
|
ERROR HY000: Unknown system variable 'group_replication_allow_local_disjoint_gtids_join'
|
|
SELECT @@GLOBAL.group_replication_allow_local_disjoint_gtids_join;
|
|
ERROR HY000: Unknown system variable 'group_replication_allow_local_disjoint_gtids_join'
|
|
SET SESSION group_replication_allow_local_disjoint_gtids_join= ON;
|
|
ERROR HY000: Unknown system variable 'group_replication_allow_local_disjoint_gtids_join'
|
|
SELECT @@SESSION.group_replication_allow_local_disjoint_gtids_join;
|
|
ERROR HY000: Unknown system variable 'group_replication_allow_local_disjoint_gtids_join'
|
|
|
|
############################################################
|
|
# 2. Clean up.
|
|
include/group_replication_end.inc
|