I have a LXC CentOS 7 host running WildFly 21.0.2. The application server connects to a MariaDB 10.4.18 database using a two-way TLS connection (mutual authentication) and the MySQL Connector/J 5.1.47 JDBC driver. It worked fine until the upgrade from Java 8u282 to Java 8u292 that happened yesterday. The connection now fails with these errors:
IJ000604: Throwable while attempting to get a new connection: null: javax.resource.ResourceException: IJ031084: Unable to create connection
Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
Caused by: javax.net.ssl.SSLHandshakeException: No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
My first thought is that Java 8u292 deprecated the protocol or the cipher suite that was used to establish the connection by MySQL Connector/J 5.1.47 JDBC driver.