1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
# Global Setup
call mtr.add_suppression("Failed to initialize TLS for channel: mysql_main");
call mtr.add_suppression("Failed to setup SSL");
call mtr.add_suppression(".*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.
Pattern "Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them." found
# Search for : CA certificate is self signed.;
Pattern "CA certificate .* is self signed." found
# 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.
Pattern "Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them." found
# Search for : CA certificate is self signed.;
Pattern "CA certificate .* is self signed." found
# Try creating SSL connection
Variable_name Value
Ssl_cipher SSL_CIPHER
# Global Cleanup
# restart:
|