Connect to SSL-enabled postgres database using SQL Developer 21.4.3
Anyone know how to connect to SSL enabled database using SQL Developer?
The tool doesn't give you the option to specify JDBC string as it does with Oracle databases, however I believe it must be possible by using the JDBC string in the hostname field (since it works without SSL syntax).
I am able to connect using PGAdmin using verify-ca plus the cert, the key and the ca cert.
I would like to do the same using SQL Developer.
The following syntax does not work:
<hostname>/<DBNAME>?ssl=true&sslmode=verify-ca&sslcert=<path to cert>&sslkey=<path to key>&sslrootcert=<path to root cert>&