Server IP : 172.67.216.182 / Your IP : 162.158.88.147 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/src/mysql-test/suite/rpl/t/ |
Upload File : |
############################################################# # Author: Serge Kozlov <[email protected]> # Date: 02/19/2009 # Purpose: Testing basic functionality of heartbeat over SSL ############################################################# --source include/not_gtid_enabled.inc --source include/not_group_replication_plugin.inc --source include/have_ssl_communication.inc --source include/master-slave.inc --echo # # Testing heartbeat over SSL # # Heartbeat over SSL --echo *** Heartbeat over SSL *** --connection master let $master_binlog= query_get_value(SHOW MASTER STATUS, File, 1); --connection slave --source include/stop_slave.inc RESET SLAVE; # Connect to master with SSL --replace_result $MASTER_MYPORT MASTER_PORT $MYSQL_TEST_DIR MYSQL_TEST_DIR $master_binlog MASTER_BINLOG --replace_column 2 #### eval CHANGE MASTER TO MASTER_HOST='127.0.0.1', MASTER_PORT=$MASTER_MYPORT, MASTER_USER='root', MASTER_HEARTBEAT_PERIOD=0.1, MASTER_LOG_FILE='$master_binlog', MASTER_SSL=1, MASTER_SSL_CA='$MYSQL_TEST_DIR/std_data/cacert.pem', MASTER_SSL_CERT='$MYSQL_TEST_DIR/std_data/client-cert.pem', MASTER_SSL_KEY='$MYSQL_TEST_DIR/std_data/client-key.pem'; --source include/start_slave.inc # Check SSL state of slave let $slave_ssl_status= query_get_value(SHOW SLAVE STATUS, Master_SSL_Allowed, 1); --echo Master_SSL_Allowed: $slave_ssl_status # Wait until hearbeat event will received let $status_var_value= query_get_value(SHOW STATUS LIKE 'slave_received_heartbeats', Value, 1); let $status_var= slave_received_heartbeats; let $status_var_comparsion= >; --source include/wait_for_status_var.inc --echo Heartbeat event has received --echo # # Clean up # --echo *** Clean up *** --source include/stop_slave.inc --replace_column 2 #### CHANGE MASTER TO MASTER_SSL=0, MASTER_SSL_CA='', MASTER_SSL_CERT='', MASTER_SSL_KEY=''; --let $rpl_only_running_threads= 1 --source include/rpl_end.inc