如何使用pgAdmin或psql远程连接?

问题描述 投票: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 cpanel pgadmin-4
1个回答
0
投票

如果您可以作为特权用户(具有角色

pg_read_all_settings
的权限)本地连接到数据库集群,则可以简单地查找文件位置。对于
postgresql.conf

SHOW config_file;

就我而言,那就是

/etc/postgresql/17/main/postgresql.conf

在 Windows 系统上,默认值为
%postgresql_dir%\data
,例如:
C:\Program Files\PostgreSQL\17\data

要允许远程连接,您还必须进行设置

pg_hba.conf
。通常在同一目录中。但你自己看看:

SHOW hba_file;
© www.soinside.com 2019 - 2024. All rights reserved.