config root man

Current Path : /usr/opt/mysql57/mysql-test/suite/group_replication/r/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/opt/mysql57/mysql-test/suite/group_replication/r/gr_ssl_mode.result

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. Start one member with GCS SSL enabled.
[connection server1]
SET @group_replication_ssl_mode_save= @@GLOBAL.group_replication_ssl_mode;
SET GLOBAL group_replication_ssl_mode= REQUIRED;
include/start_and_bootstrap_group_replication.inc
Occurrences of 'Group communication SSL configuration: group_replication_ssl_mode: "REQUIRED"' in the input file: 1

############################################################
# 2. Start a second member with GCS SSL disabled, the member
#    will fail to join the group.
[connection server2]
SET @group_replication_ssl_mode_save= @@GLOBAL.group_replication_ssl_mode;
SET GLOBAL group_replication_ssl_mode= DISABLED;
START GROUP_REPLICATION;
ERROR HY000: The server is not configured properly to be an active member of the group. Please see more details on error log.
Occurrences of 'Group communication SSL configuration: group_replication_ssl_mode: "DISABLED"' in the input file: 1

############################################################
# 3. Start the second member with GCS SSL enabled, the member
#    will be able to join the group.
SET GLOBAL group_replication_ssl_mode= REQUIRED;
include/start_group_replication.inc
include/rpl_gr_wait_for_number_of_members.inc
Occurrences of 'Group communication SSL configuration: group_replication_ssl_mode: "REQUIRED"' in the input file: 1
include/stop_group_replication.inc

############################################################
# 4. Start the second member with GCS SSL enabled and
#    validating server certificate against the CA, the
#    member will be able to join the group.
SET GLOBAL group_replication_ssl_mode= VERIFY_CA;
include/start_group_replication.inc
include/rpl_gr_wait_for_number_of_members.inc
Occurrences of 'Group communication SSL configuration: group_replication_ssl_mode: "VERIFY_CA"' in the input file: 1
include/stop_group_replication.inc

############################################################
# 5. Start the second member with GCS SSL enabled and
#    validating server certificate against the CA plus
#    validating that server hostname matches server
#    certificate hostname, the member will be able to join
#    the group.
SET GLOBAL group_replication_ssl_mode= VERIFY_IDENTITY;
include/start_group_replication.inc
include/rpl_gr_wait_for_number_of_members.inc
Occurrences of 'Group communication SSL configuration: group_replication_ssl_mode: "VERIFY_IDENTITY"' in the input file: 1
include/stop_group_replication.inc

############################################################
# 6. Clean up.
[connection server1]
SET GLOBAL group_replication_ssl_mode= @group_replication_ssl_mode_save;
[connection server2]
SET GLOBAL group_replication_ssl_mode= @group_replication_ssl_mode_save;
include/group_replication_end.inc

Man Man