I am unable to setup SSL/TLS between wildfly 10 and Mysql. I have been trying to the following configurations for the datasource : .
<datasource jta="true" jndi-name="java:/jdbc/transit" pool-name="transit" enabled="true" use-ccm="true">
<connection-url>jdbc:mysql://myInstance.rds.amazonaws.com:3306/dbname?ssl=true</connection-url>
<driver-class>com.mysql.jdbc.Driver</driver-class>
<driver>mysql-connector-java-5.1.40.jar_com.mysql.jdbc.Driver_5_1</driver>
<security>
<user-name>example</user-name>
<password>secret</password>
</security>
<validation>
<valid-connection-checker class-name="org.jboss.jca.adapters.jdbc.extensions.mysql.MySQLValidConnectionChecker"/>
<background-validation>true</background-validation>
<exception-sorter class-name="org.jboss.jca.adapters.jdbc.extensions.mysql.MySQLExceptionSorter"/>
</validation>
</datasource>
The configuration of JDBC to use SSL is database vendor specific. The and tags of the datasource provide the needed flexibility to add the required JDBC configuration options to enable SSL database connections. Check with the database vendor what string or property can be added to connection URL or connection property and can configure it in datasource configuration at the JBoss end, this might require providing a truststore at the JBoss end to provide the trust on the database server. This can added in the following way :
JAVA_OPTS="$JAVA_OPTS -Djavax.net.ssl.trustStore=/path/to/db_cert.truststore In domain mode the system property javax.net.ssl.trustStore needs to be set for the server which will be using the datasource .
The JBoss Administration and Configuration Guide discusses datasource configuration in chapter 13:
https://access.redhat.com/documentation/en/red-hat-jboss-enterprise-application-platform/version-7.0/configuration-guide/#datasource_management