Server IP : 104.21.38.3 / Your IP : 172.70.143.253 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/auth_sec/r/ |
Upload File : |
# Global Setup call mtr.add_suppression("Failed to setup SSL"); call mtr.add_suppression("SSL error: SSL_CTX_set_default_verify_paths failed"); # Case 1 : Enable SSL automatically if ca.pem, server-cert.pem and # sever-key.pem are present in data directory # Copy SSL certificates before restarting. # They should be picked up automatically by server. # Restart completed. # Search for : Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. # Search for : CA certificate is self signed.; # Try to establish SSL connection : This must succeed. SHOW STATUS LIKE 'Ssl_cipher'; Variable_name Value Ssl_cipher SSL_CIPHER SHOW VARIABLES LIKE 'have_ssl'; Variable_name Value have_ssl YES # Check values of ssl_ca, ssl_cert and ssl_key. # They should refer to certificate/key files in data directory. SHOW VARIABLES LIKE 'ssl_ca'; Variable_name Value ssl_ca ca.pem SHOW VARIABLES LIKE 'ssl_cert'; Variable_name Value ssl_cert server-cert.pem SHOW VARIABLES LIKE 'ssl_key'; Variable_name Value ssl_key server-key.pem # Connect using mysql client : This must succeed. Variable_name Value Ssl_cipher SSL_CIPHER # Case 2 : Remove server-key.pem and observe that server starts # without SSL capability # Remove one of the certificates/keys. # Restart completed. # Check value of have_ssl. It must be DISABLED. SHOW VARIABLES LIKE 'have_ssl'; Variable_name Value have_ssl DISABLED # Try creating SSL connection using mysql connection. It should fail. # # Bug#21108296 : --SSL-CIPHER OPTION CAUSES SSL INITIALIZATION FAILURE # # Restart completed. # Search for : Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. # Search for : CA certificate is self signed.; # Try creating SSL connection Variable_name Value Ssl_cipher SSL_CIPHER # Global Cleanup