我已经通过 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
。
如果您可以作为特权用户(具有角色
pg_read_all_settings
的权限)本地连接到数据库集群,则可以简单地查找文件位置。对于postgresql.conf
:
SHOW config_file;
就我而言,那就是
/etc/postgresql/17/main/postgresql.conf
。%postgresql_dir%\data
,例如:C:\Program Files\PostgreSQL\17\data
。
pg_hba.conf
。通常在同一目录中。但你自己看看:
SHOW hba_file;