user17290563
user17290563

Reputation: 57

Error: The server does not support SSL connections

M1 Mac Monterey12.1

Error: The server does not support SSL connections

I used a postgres server to I ran the following code.

DATABASE_URL=$DATABASE_URL NODE_ENV=production yarn develop    

enter image description here I'm using strapi with a postgres server. I did a breww install openssl.

Upvotes: 0

Views: 11115

Answers (1)

Laurenz Albe
Laurenz Albe

Reputation: 247625

The PostgreSQL server does not support SSL connections. As per the documentation, you should add sslmode=disable to your JDBC connection URL or as connection parameter.

Upvotes: 3

Related Questions