Reputation: 48
I installed Postgres v13.11 (x64). After its installation, I opted to install additional services through Stack Builder (PEM Server v9, PEM Agent v9, PEM-HTTPD v2. Stack Builder then started installing PEM Server however when prompted to enter in PEM Server installation details, I get the following error: 'psql: server does not support SSL, but SSL was required'
I've looked at other similar questions and possible solutions online but they all seem to be encountering this error (and subsequently fixing it) while using the psql shell and either setting sslmode to allow or disable as such:
psql "sslmode=disable host=localhost dbname=test"
or
psql "sslmode=allow host=localhost dbname=test"
Im not sure how to use these fixes for an installation through Stack Builder.
Upvotes: 1
Views: 866
Reputation: 1
This is how I fixed a similar issue for PostgresSQL:
services.msc
, and press Enter.Upvotes: 0
Reputation: 1
Try to use below parameter under pg_hba.conf file:
psql "sslmode=disable host=localhost dbname=test"
Upvotes: 0