-
I tried an encrypted connection through 5432 port. But it does not work. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hey @mkv27! We only support password encryption at the moment (CMIIW), so it should be enough to use the connection string in Settings > Database with psql or any other client. https://www.postgresql.org/docs/current/encryption-options.html We're working on adding SSL encryption support, so watch this space! |
Beta Was this translation helpful? Give feedback.
-
Postgres usernames and passwords are only used as an authorization mechanism for performing actions on a particular database. They have no part in handling encryption, either of the contents of that database, or any connections to it, be they local or remote. You should probably enable SSL or GSSAPI..... fairly soon. Or months ago. |
Beta Was this translation helpful? Give feedback.
Hey @mkv27! We only support password encryption at the moment (CMIIW), so it should be enough to use the connection string in Settings > Database with psql or any other client.
https://www.postgresql.org/docs/current/encryption-options.html
We're working on adding SSL encryption support, so watch this space!