Server IP : 104.21.38.3 / Your IP : 162.158.162.111 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/connection_control/r/ |
Upload File : |
#----------------------------------------------------------------------- # Setup # Install connection_control plugin INSTALL PLUGIN connection_control SONAME 'CONNECTION_CONTROL_LIB'; INSTALL PLUGIN connection_control_failed_login_attempts SONAME 'CONNECTION_CONTROL_LIB'; # Do proxy setup CALL mtr.add_suppression("Plugin test_plugin_server reported: 'Wrong password supplied for proxied'"); SET @saved_connections_threshold = @@global.connection_control_failed_connections_threshold; SET @saved_max_delay = @@global.connection_control_max_connection_delay; SET @saved_min_delay= @@global.connection_control_min_connection_delay; SET @@global.connection_control_failed_connections_threshold = 3; SET @@global.connection_control_max_connection_delay = 4000; SET @@global.connection_control_min_connection_delay = 2000; #----------------------------------------------------------------------- # Case 1 : Testss for valid user accounts # Make enough failed attempts to trigger delays connect(localhost,u1,,test,MASTER_PORT,MASTER_SOCKET); connect(localhost,u1,haha,test,MASTER_PORT,MASTER_SOCKET); connect(localhost,u2,efgh,test,MASTER_PORT,MASTER_SOCKET); connect(localhost,u3,,test,MASTER_PORT,MASTER_SOCKET); connect(localhost,u2,haha,test,MASTER_PORT,MASTER_SOCKET); connect(localhost,u3,efgh,test,MASTER_PORT,MASTER_SOCKET); connect(localhost,u2,,test,MASTER_PORT,MASTER_SOCKET); connect(localhost,u1,haha,test,MASTER_PORT,MASTER_SOCKET); connect(localhost,u3,efgh,test,MASTER_PORT,MASTER_SOCKET); # Following attempts will experience delay in server respose # Connection attempt should fail. Connection_control_delay_generated should be 1 Variable_name Value Connection_control_delay_generated 1 @server_response_time >= 2 1 # Connection attempt should fail. Connection_control_delay_generated should be 2 Variable_name Value Connection_control_delay_generated 2 @server_response_time >= 2 1 # Connection attempt should fail. Connection_control_delay_generated should be 3 Variable_name Value Connection_control_delay_generated 3 @server_response_time >= 2 1 # Connection attempt should succeed. Connection_control_delay_generated should be 4 Variable_name Value Connection_control_delay_generated 4 @server_response_time >= 2 1 # Connection attempt should succeed. Connection_control_delay_generated should be 5 Variable_name Value Connection_control_delay_generated 5 @server_response_time >= 2 1 # Connection attempt should succeed. Connection_control_delay_generated should be 6 Variable_name Value Connection_control_delay_generated 6 @server_response_time >= 2 1 # Following attempts will not experience any delay in server respose # Connection attempt should fail. Connection_control_delay_generated should be 6 Variable_name Value Connection_control_delay_generated 6 # Connection attempt should fail. Connection_control_delay_generated should be 6 Variable_name Value Connection_control_delay_generated 6 # Connection attempt should fail. Connection_control_delay_generated should be 6 Variable_name Value Connection_control_delay_generated 6 # Connection attempt should succeed. Connection_control_delay_generated should be 6 Variable_name Value Connection_control_delay_generated 6 # Connection attempt should succeed. Connection_control_delay_generated should be 6 Variable_name Value Connection_control_delay_generated 6 # Connection attempt should succeed. Connection_control_delay_generated should be 6 Variable_name Value Connection_control_delay_generated 6 #----------------------------------------------------------------------- # Cleanup SET @@global.connection_control_failed_connections_threshold = @saved_connections_threshold; SET @@global.connection_control_max_connection_delay = @saved_max_delay; SET @@global.connection_control_min_connection_delay = @saved_min_delay; # Remove user accounts # Uninstall connection_control plugin UNINSTALL PLUGIN connection_control; UNINSTALL PLUGIN connection_control_failed_login_attempts; #-----------------------------------------------------------------------