0

我有一个用户得到:

致命:主机“2002:8c64:7831::8c64:7831”用户“”、数据库“postgis”、SSL 关闭没有 pg_hba.conf 条目

尝试使用 QGIS 2.0 从 Postgres 检索数据时。用户有一台新机器(运行 32 位 Windows 7)。庄园的其余部分目前正在运行 XP,没有其他人报告这个问题。我的 pg_hba.conf 都受信任:

host    all all 127.0.0.1/32    trust
host    all all 0.0.0.0/0   trust 
host    all all ::1/128     trust 
host    all all 0.0.0.0/0   trust

我需要对 Windows 7 客户端的 pg_hba.conf 文件进行任何更改吗?或者我需要进行哪些更改才能使其正常工作?

4

1 回答 1

1

您缺少 ipv6 的允许条目,您只允许 localhost over ipv6。您还应该添加 ::/0(所有地址)或 2000::/3(所有可路由地址)。

于 2013-10-22T09:24:17.327 回答