Server IP : 104.21.38.3 / Your IP : 172.71.124.157 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/mysql-test/suite/group_replication/inc/ |
Upload File : |
# ==== Purpose ==== # # Check that Group Replication plugin is installed and that test # case server configuration fulfills Group Replication requirements. # # Also it configures: # 1) group_replication_group_name, if not configured previously. # 2) client connections to all group servers. # 3) XCom configuration. # # ==== Usage ==== # # [--let $group_replication_group_name= UUID] # [--let $rpl_skip_group_replication_configuration= 1] # --source include/have_group_replication_plugin.inc # # Parameters: # # $group_replication_group_name # By default, this script generates a random group name to be # used on the test that sources it. # If this parameter is provided, its value will be used as # group name. # # $skip_group_replication_configuration # By default, this script configures XCom on all servers. # If this parameter is provided, the XCom configuration setup # is skipped. # # $skip_recovery_configuration # By default, this script will configure the servers with a default value # for a user_name and password which will be used for distributed # recovery. However, if this parameter is provided, the recovery # configuration is skipped. # --let $include_filename= have_group_replication_plugin.inc --let $_previous_include_silent= $include_silent --let $include_silent= 1 --source include/begin_include_file.inc # Check server configuration. --source ../inc/have_group_replication_plugin_base.inc # Allow $SERVER_MYPORT_1 as alias for $MASTER_MYPORT # necessary for the rpl_group_replication_default_connections.inc file. if (!$SERVER_MYPORT_1) { --let SERVER_MYPORT_1= $MASTER_MYPORT } # Allow $SERVER_MYPORT_2 as alias for $SLAVE_MYPORT # necessary for the rpl_group_replication_default_connections.inc file. if (!$SERVER_MYPORT_2) { --let SERVER_MYPORT_2= $SLAVE_MYPORT } --source include/rpl_group_replication_default_connections.inc # Generate group name if not defined yet. if ($group_replication_group_name == '') { --let $group_replication_group_name= `SELECT UUID()` } if (!$rpl_skip_group_replication_configuration) { # Configure XCom. --source ../inc/gr_configuration.inc } --let $include_filename= have_group_replication_plugin.inc --let $include_silent= $_previous_include_silent --source include/end_include_file.inc