aqua data studio postgresql ssl

Solutions on MaxInterview for aqua data studio postgresql ssl by the best coders in the world

showing results for - "aqua data studio postgresql ssl"
Claudia
07 Oct 2016
1Aqua Data studio postgresql ssl
2
3In your Server Registration dialog, in the Driver tab you can enter the 
4parameter value of:
5
6?ssl=true;sslfactory=org.postgresql.ssl.NonValidatingFactory
7
8This will tell the driver to enable SSL and to use the NonValidatingFactory.  
9The documentation for the NonValidatingFactory is :
10"Provide a SSLSocketFactory that allows SSL connections to be made without validating the server's certificate. This is more convenient for some applications, but is less secure as it allows "man in the middle" attacks."
11
12Do note that the "ssl" and the "sslfactory" options are separated by ";" and not "&".