小编din*_*239的帖子

PostgreSQL连接被拒绝

我已经安装了PostgreSQL。但是,每次我尝试通过PGAdmin或通过psql连接时,都会出现以下错误。

could not connect to server: Connection refused (0x0000274D/10061) 
      Is  the server running on host "localhost" (::1) and 
      accepting TCP/IP  connections on port 5432? 
could not connect to server: Connection  refused (0x0000274D/10061) 
      Is the server running on host "localhost" (127.0.0.1) and 
      accepting TCP/IP connections on port 5432?
Run Code Online (Sandbox Code Playgroud)

我检查了postgresql.conf文件和行:listen_addresses = '*'未注释掉。

这也是我的pg_hba.conf文件设置方式:

# IPv4 local connections:
  host    all             all             127.0.0.1/32            trust
# IPv6 local connections:
  host    all             all             ::1/128                 trust
Run Code Online (Sandbox Code Playgroud)

谁能建议我如何解决此问题?

谢谢!

postgresql connection localhost server connection-refused

6
推荐指数
2
解决办法
2万
查看次数