27 lines
1.7 KiB
Plaintext
27 lines
1.7 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]
|
|
[connection server1]
|
|
include/start_and_bootstrap_group_replication.inc
|
|
SET GLOBAL group_replication_member_expel_timeout= -1;
|
|
ERROR 42000: Variable 'group_replication_member_expel_timeout' can't be set to the value of '-1'
|
|
SET GLOBAL group_replication_member_expel_timeout= 0.5;
|
|
ERROR 42000: Incorrect argument type to variable 'group_replication_member_expel_timeout'
|
|
SET GLOBAL group_replication_member_expel_timeout= 3601;
|
|
ERROR 42000: Variable 'group_replication_member_expel_timeout' can't be set to the value of '3601'
|
|
SET GLOBAL group_replication_member_expel_timeout= 3600;
|
|
include/assert.inc [The value of member_expel_timeout should be 3600]
|
|
include/stop_group_replication.inc
|
|
SET GLOBAL group_replication_member_expel_timeout= -200;
|
|
ERROR 42000: Variable 'group_replication_member_expel_timeout' can't be set to the value of '-200'
|
|
SET GLOBAL group_replication_member_expel_timeout= 5.5;
|
|
ERROR 42000: Incorrect argument type to variable 'group_replication_member_expel_timeout'
|
|
SET GLOBAL group_replication_member_expel_timeout= 10000;
|
|
ERROR 42000: Variable 'group_replication_member_expel_timeout' can't be set to the value of '10000'
|
|
SET GLOBAL group_replication_member_expel_timeout= 30;
|
|
include/assert.inc [The value of member_expel_timeout should be 30]
|
|
SET GLOBAL group_replication_member_expel_timeout= 0;
|
|
include/group_replication_end.inc
|