如何通过pgAdmin或psql连接远程postgreSQL数据库

问题描述 投票:0回答:1

我对此了解甚少。我已经通过 Cpanel 为我的网站安装了 PostgreSQL。看起来我可以使用 Cpanel 提供的 pgAdmin 访问数据库。但是,我想使用本地 PC 上运行的 pgAdmin 远程连接到数据库(在我的站点上运行)。我调查并在 https://www.netiq.com/documentation/identity-manager-47/setup_windows/data/connecting-to-a-remote-postgresql-database.html 找到了一些信息,但我不确定在哪里我可以在面板中找到 postgresql.conf。

postgresql pgadmin-4
1个回答
0
投票

要查找配置文件

postgresql.conf
的实际位置,您可以查找
config_file
的设置 - 如果您可以作为特权用户(具有角色
pg_read_all_settings
的权限)在本地连接到数据库集群:

SHOW config_file;

我的情况是

/etc/postgresql/17/main/postgresql.conf
,但在Windows系统上有所不同,默认是
%postgresql_dir%\data
,例如:
C:\Program Files\PostgreSQL\17\data

© www.soinside.com 2019 - 2024. All rights reserved.