Hi folks,
We have a SAS installed on Linux (9.4M7). Until last Friday we connected to postgres without any problem. After that, we received the following error:
CLI error trying to establish connection: FATAL: no pf_hba.conf entry for host x.x.x.x, user yyyy, database zzzz, no encryption.
We used other tools to connect to Postgres too, and on it the solution was add the following options on the connection string:
SSL=true
SSLFACTORY= org.postgrsql.ssl.NonValidatingFactory
I tried to add it to the current connection but SSLFACTORY option was not recognized.
Our current connection string is:
proc sql;
connect to postgres (server=xxxx port=35432 database=xxx user=xxx password=xxx)
Any idea how to pass the SSLFACTORY option?
Regards,