从需要 ssl 和 ssl 模式的托管 postgresql 实例转储
Dump from a managed postgresql instance with ssl and ssl mode required
各位程序员大家好,
我正在尝试从要求我连接 ssl 证书的 postgres 实例进行转储。出现的问题是 pg_dump
的旧文档中存在的 --sslcert
和 --sslmode
对于版本 14 (https://www.postgresql.org/docs/14/libpq-ssl.html) 似乎不存在。
我的问题是如何从要求用户拥有证书的数据库中转储数据库?
我不能在服务器上安装任何东西,因为它是托管的。通过 psql
连接可以很好地使用 ssl,所以我有点困惑。
在此先感谢您的明智建议和更好的智慧
您可以使用带有 -d
选项的连接字符串:
pg_dump -d 'sslmode=require sslcert=/my/certificate host=xyz' -F c -f dumpfile
各位程序员大家好,
我正在尝试从要求我连接 ssl 证书的 postgres 实例进行转储。出现的问题是 pg_dump
的旧文档中存在的 --sslcert
和 --sslmode
对于版本 14 (https://www.postgresql.org/docs/14/libpq-ssl.html) 似乎不存在。
我的问题是如何从要求用户拥有证书的数据库中转储数据库?
我不能在服务器上安装任何东西,因为它是托管的。通过 psql
连接可以很好地使用 ssl,所以我有点困惑。
在此先感谢您的明智建议和更好的智慧
您可以使用带有 -d
选项的连接字符串:
pg_dump -d 'sslmode=require sslcert=/my/certificate host=xyz' -F c -f dumpfile