我试图让 Postgres 9.2.4 在 Windows 7 上作为服务运行。安装 postgres 后,该服务运行良好。但是,在将 postgres 设置为另一个程序的服务器后,该服务停止运行。当我现在尝试启动服务时,我收到一条消息:
“本地计算机上的 postgresql-x64-9.2 - PostgreSQL Server 9.2 服务启动然后停止。如果某些服务没有被其他服务或程序使用,它们会自动停止。”
当我尝试运行应该使用数据库服务器的程序时,我收到此错误:
“尝试登录或创建生产数据库时遇到问题。详细信息:无法连接到服务器;无法连接到远程套接字。应用程序现在必须关闭”
我在打开同一个程序时也遇到过这个错误:
“尝试登录或创建生产数据库时遇到问题。详细信息:致命:无法加载 pg_hba.conf 应用程序现在必须关闭。”
我尝试运行以本地系统帐户以及我自己的帐户(在 postgres 服务属性中)登录的服务,但无济于事。我也尝试重新启动我的电脑。在网上查了很多故障后,我了解到一个好东西是检查 pg_log 文件。以下是最新 pg_log 条目的内容:
2013-05-29 14:59:45 MDT LOG: database system was interrupted; last known up at 2013-05-29 14:58:01 MDT
2013-05-29 14:59:45 MDT LOG: database system was not properly shut down; automatic recovery in progress
2013-05-29 14:59:45 MDT LOG: record with zero length at 0/175BB98
2013-05-29 14:59:45 MDT LOG: redo is not required
2013-05-29 14:59:45 MDT LOG: database system is ready to accept connections
2013-05-29 14:59:45 MDT LOG: autovacuum launcher started
2013-05-29 15:07:00 MDT LOG: local connections are not supported by this build
2013-05-29 15:07:00 MDT CONTEXT: line 1 of configuration file "C:/PostgreSQL/data/pg_hba.conf"
2013-05-29 15:07:00 MDT FATAL: could not load pg_hba.conf
2013-05-29 15:07:00 MDT LOG: local connections are not supported by this build
2013-05-29 15:07:00 MDT CONTEXT: line 1 of configuration file "C:/PostgreSQL/data/pg_hba.conf"
2013-05-29 15:07:00 MDT FATAL: could not load pg_hba.conf
2013-05-29 15:09:03 MDT LOG: received fast shutdown request
2013-05-29 15:09:03 MDT LOG: aborting any active transactions
2013-05-29 15:09:03 MDT LOG: autovacuum launcher shutting down
2013-05-29 15:09:03 MDT LOG: shutting down
2013-05-29 15:09:03 MDT LOG: database system is shut down
pg_hba.conf 文件似乎有问题,如下所示:
local all all trust
host all all 127.0.0.1 255.255.255.255 trust
host all all 0.0.0.0 0.0.0.0 trust
根据网上的许多建议,我尝试将顶行编辑为许多不同的替代方案(host all all trust / host all 127.0.0.1/32 trust / host all 192.168.0.100/24 trust 等)。这对我来说很有意义,因为日志文件说 postgres 不支持本地连接并且也指向该行。但是,我的任何更改都没有任何效果。每次更改后我都尝试重新启动计算机,但没有任何区别。
当我搜索 pg_hba.conf 文件通常看起来的示例时,这些示例看起来与我的文件略有不同。我注意到在 PostgreSQL 程序文件中,除了 pg_hba.conf 之外,还有一个“20130529-150444-old-pg_hba.conf”文件,它看起来更像我在网上找到的示例。该文件在最后几行之前有几行注释:
# TYPE DATABASE USER ADDRESS METHOD
# IPv4 local connections:
host all all 127.0.0.1/32 md5
# IPv6 local connections:
host all all ::1/128 md5
# Allow replication connections from localhost, by a user with the
# replication privilege.
#host replication postgres 127.0.0.1/32 md5
#host replication postgres ::1/128 md5
我希望这是原始的 pg_hba.conf 文件,如果我用旧文件的内容替换新文件,postgres 将再次开始工作。没有这样的运气。我一直希望在 pg_log 中记录更多的错误文件,以查看之前声明的错误是否已消失或更改为其他内容,但没有记录更多文件。
我已经在网上进行了几天的故障排除,但我发现没有任何效果。很抱歉有这么长的问题,但我想彻底并包括所有相关信息。如果有人能对这个问题有所了解或提供建议,我将不胜感激。