postgresql PGADMIN 4 Linux二进制路径

b09cbbtk  于 2023-05-06  发布在  PostgreSQL
关注(0)|答案(1)|浏览(288)

我正在尝试从PgAdmin 4使用备份和还原。我已经在preferences中将二进制路径设置为/usr/bin,其中包含pg_dump命令等。我使用的是安装了pgadmin的linux环境。设置该路径后,我仍然得到一个错误,pg_dump是找不到的,当它清楚地列在该路径下。psql启动并运行等。我错过了什么,有人能帮忙吗?谢谢!

'/usr/bin/pg_dump' file not found. Please correct the Binary Path in the Preferences dialog
y3bcpkx1

y3bcpkx11#

为了正确执行PgAdmin 4,请通过以下命令在linux中查找实际的二进制路径。

$ find / -name "pg_restore"

输出

/usr/pgsql-14/bin/pg_restore

这将显示pg_dump、pg_dump_all、pg_restore等的可执行路径。只需复制“/usr/pgsql-14/bin”并转到File -〉preference -〉path -〉binary path -〉PostgreSQL Binay Path并根据您的PostgreSQL版本设置值。

相关问题