I'm trying to push my local postgres db to heroku and I get the following SSL error:
psql: sslmode value "require" invalid when SSL support is not compiled in
I uninstalled postgres and reinstalled it with the configuration
./configure --with-includes=/usr/local/ssl/include
I also changed the ssl setting in my postgresql.conf file to "on" and sent a SIGHUP signal to the server and still get the same error.
Is there something I'm overlooking? I don't think it should be this difficult to push to heroku.
./configure --with-includes=/usr/local/ssl/include
would result in mylibpq
library being configured correctly to work with openssl. – Brosef 22 hours ago--with-openssl
and--with-includes=/usr/local/ssl/include/openssl
flag – NB: check also folders. For another question what OS are you running and what did you use to install Postgres? – Kristo Magi 22 hours ago--with-openssl
but got the error "configure: error: header file <openssl/ssl.h> is required for OpenSSL". So i tried the solution here: postgresql.org/message-id/[email protected] – Brosef 22 hours ago