Home > Software design >  Dump from a managed postgresql instance with ssl and ssl mode required
Dump from a managed postgresql instance with ssl and ssl mode required

Time:03-22

Hello fellow programmers,

I am trying to dump from a postgres instance which is requiring me to connect with a ssl certificate. The problem that occurs is that the --sslcert and --sslmode that exists on older documentation for pg_dump doesn't seem to exist for version 14 (https://www.postgresql.org/docs/14/libpq-ssl.html).

My question is how can I dump a database from such a database that is requiring users to have a certificate?

I cannot install anything on the server since it's managed. Connecting through psql works fine with ssl so I am kind of confused.

Thanks in advance for your sage advice and better wisdom

CodePudding user response:

You can use a connection string with the -d option:

pg_dump -d 'sslmode=require sslcert=/my/certificate host=xyz' -F c -f dumpfile
  • Related