0

直升机,

Postgresql 和 ArcGIS INSPIRE 模块有一些问题。

首先,我们在这个问题上不是专家和经验丰富的,所以对“业余”句子感到抱歉。

问题是,当我们尝试在 pgAdminIII 中创建一个帐户并重新启动时,没有建立与数据库/服务的连接,并且丢失了之前有效的设置。

尝试与管理员连接时,我们收到了类似的错误消息:

http://www.pgadmin.org/docs/1.8/images/no-hba.png

我们正在使用内置的 postgresql.conf 编辑器来更改

listen_addresses = '*' ,但没关系。

我们也更改了 pg_hba.conf(添加了所需的参数),但是当我们完成编辑并保存时,添加的行从文件中消失了。

重启后,postgresql 无法连接到数据库,所以我们不得不改回原来的设置/conf 文件。

我们发现在这些.conf 文件中可以更改很多参数,但我们不明白哪里出了问题。

谢谢。就这样。:)

4

1 回答 1

0

:)

So it looks like it works! And it looks like that we were really far from the solution.

Our solution is:

  • with the pgAdminIII we had to create a new user, theb change the pg_hba.conf -add new connection, like one of the well known variant:

    host all all xxx.xx.xx.xx/32 md5

  • pg_pass.conf also changed, like

    localhost 5432 database username password

  • then we had to get a postgre client for the ArcGIS too

  • and finally it works!!!
于 2013-10-16T07:04:19.733 回答