Server IP : 172.67.216.182 / Your IP : 172.70.142.87 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 : |
# This test verifies that the CHANGE MASTER FOR recovery channel command # is logged in the slow log, query_log and error log, but the password # value is either masked with '<secret>' or is not logged. # --let $skip_recovery_configuration=1 --source ../inc/have_group_replication_plugin.inc --let $rpl_skip_group_replication_start= 1 --source ../inc/group_replication.inc # Start group replication on server1 --let $rpl_connection_name= server1 --source include/rpl_connection.inc --echo # Creating a connection on the first server to be used by the recovery channel SET sql_log_bin=0; CREATE USER 'manish'@'%' IDENTIFIED BY 'unique_password'; GRANT REPLICATION SLAVE ON *.* TO 'manish'@'%'; FLUSH PRIVILEGES; SET sql_log_bin=1; SET @old_log_output= @@log_output; SET GLOBAL log_output= 'TABLE'; TRUNCATE mysql.general_log; --source ../inc/start_and_bootstrap_group_replication.inc --echo # CHANGE MASTER with valid options will work fine and the password part will be masked with <secret> --disable_warnings CHANGE MASTER TO MASTER_USER='manish', MASTER_PASSWORD='unique_password' FOR CHANNEL 'group_replication_recovery'; --enable_warnings --echo # Since MASTER_PASSWORD is not stored in the performance schema table --echo # (performance_schema.replication_connection_configuration) it won't be visible. --error ER_BAD_FIELD_ERROR SELECT password FROM performance_schema.replication_connection_configuration; --echo server1 --let $change_count= `SELECT COUNT(*) FROM mysql.general_log WHERE argument LIKE 'CHANGE MASTER TO MASTER_USER = \'manish\' MASTER_PASSWORD = <secret>'` --let $assert_cond= "$change_count" = 1 --let $assert_text= The CHANGE MASTER is logged with the password value replaced with the keyword <secret>. --source include/assert.inc # Checking the default values for the User_name and User_password field. --connection server2 SET sql_log_bin=0; call mtr.add_suppression(".*Invalid .* username when attempting to connect to the master server.*"); call mtr.add_suppression("There was an error when connecting to the donor server"); call mtr.add_suppression("For details please check performance_schema.replication_connection_status table and error log messages of Slave I/O for channel group_replication_recovery."); SET sql_log_bin=1; --disable_query_log --eval SET GLOBAL group_replication_group_name= "$group_replication_group_name" --enable_query_log START GROUP_REPLICATION; --let $expected_value_user=`SELECT User_name FROM mysql.slave_master_info WHERE Channel_name LIKE 'group_replication_recovery'` --let $expected_value_password=`SELECT User_password FROM mysql.slave_master_info WHERE Channel_name LIKE 'group_replication_recovery'` --let $assert_text= The default values of the User_name and User_password are empty without a previous change master. --let $assert_cond= "$expected_value_user" = "" AND "$expected_value_password"= "" --source include/assert.inc --connection server1 # Cleanup RESET SLAVE ALL FOR CHANNEL 'group_replication_recovery'; SET sql_log_bin=0; DROP USER manish; SET sql_log_bin=1; SET @@global.log_output= @old_log_output; --source ../inc/group_replication_end.inc