Force SSL When Making A psql Connection
If you try connecting psql
to a Postgres server that requires SSL connections, you'll see an error message like this:
You can tell psql
to make an SSL connection by adding the sslmode=require
key-value pair to the connection.
If you're using a connection string, that might look like this:
Or if you're using the connection parameter flags, it may look like this, using the --set
flag:
If after adding sslmode=require
, you find that SSL support is not compiled in, follow the instructions in this post to reinstall Postgres with SSL support.
Last updated