Sidebar

How do I configure a TLS-enabled JDBC connection to the QIE MariaDB database?

0 votes
110 views
asked Dec 8, 2023 by jon-t-7005 (7,590 points)
I am trying to configure QIE to use a TLS-enabled connection to the QIE MariaDB database.  Where do I put the options?

1 Answer

0 votes

You need to modify the "-Dconnection.url" string in the QIE startup arguments to include the required options.  For example:

-Dconnection.url=jdbc.mariadb://server:3306/qie?useSSL=true&trustServerCertificate=true&requireSSL=true&verifyServerCertificate=false
answered Dec 8, 2023 by jon-t-7005 (7,590 points)
...