- is it possible to run java command with ssl debug information ? with "-Djavax.net.debug=all" / setting System.setProperty("javax.net.debug", "true")
I've attached application logs. app_debug.log
Curiously when I enable javax.net.debug=all I no longer see the "unknown_ca", but rather a Broken Pipe error. However, this seems to be caused by the SSL handshake failing, and it does go away once we explicitly set the serverSslCert.
Percona Server 5.7.23-23
- the connection string to know if you use one or 2 way ssl authentication
jdbc:mysql://q-n3s3y1.q-g799.bosh:3306/service_instance_db?user=a2ef9950e97b418d8e85a13b8f8ff2a9\u0026useSSL=true\u0026requireSSL=true
- is the connection user configured to have ssl mandatory ? (i.e. result of the query 'select host, user, ssl_type from mysql.user where user='<myuser>')
We are not using mutual TLS or strictly requiring TLS on the mysql user level:
mysql> select ssl_type from mysql.user where User = 'a2ef9950e97b418d8e85a13b8f8ff2a9';
|
+----------+
|
| ssl_type |
|
+----------+
|
| |
|
+----------+
|
1 row in set (0.00 sec)
|
- which version of mysql driver do you use when working ? if i remember that right, some old mysql driver was permitting connection with SSL not enable even when SSL option is set
When our SSL connections work, we are using mysql-connector-java-5.1.45. We verify that we're making a SSL connection by checking performance_schema.threads:
mysql> select connection_type from performance_schema.threads where processlist_user = 'a2ef9950e97b418d8e85a13b8f8ff2a9';
|
+-----------------+
|
| connection_type |
|
+-----------------+
|
| SSL/TLS |
|
+-----------------+
|
1 row in set (0.00 sec)
|
Additionally we've verified that that MySQL connector was actually verifying our server certificate by reconfiguring the MySQL server with a certificated signed by an untrusted CA and seeing validation failures.
Hi andrew,
If you can provide some additional information to pinpoint the exact issue :