错误连接到postgresql

时间:2012-09-27 11:24:29

标签: sql postgresql arcgis

我正在尝试使用ArcCatalog连接到PostgreSQL。但我认为这不重要。我甚至无法连接pgAdmin。连接在localhost上运行良好,问题仅在于远程PC的连接。

每次我收到错误时:

Failed to connect to the specified server.
Underlying DBMS error [Fatal: missing or erroneous pg_hba.conf file HINT: See server log for details. 
SQL state:]

我无法理解这个错误的原因。我查看了ESRI网站并找到了名为“PostgreSQL DBMS for Windows”的工具,但它仅适用于arcgis 10.1和Win x64。

我知道默认情况下PostgreSQL不允许远程连接,所以我把pg_hba.conf放到下一篇文字中:

host    all         all         127.0.0.1/32          md5

host    all         all         169.254.231.203          trust

host    all         all     0.0.0.0/0       trust

1 个答案:

答案 0 :(得分:0)

请检查169.254.231.203是否有效的IP地址。您应该配置 pg_hba.conf 以远程访问您的数据库。 我希望这些链接可以帮到你。

  1. http://www.postgresql.org/docs/devel/static/auth-pg-hba-conf.html
  2. http://www.linuxtopia.org/online_books/database_guides/Practical_PostgreSQL_database/c15679_002.htm