服务器是否在主机“localhost”(:: 1)上运行,并接受端口5432上的TCP / IP连接?
我正在Django上工作。 我使用PostgreSQL数据库。
完整的错误说:
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?
你有什么主意吗?
在黑暗中狂野的刺:你在一个IPv6parsing器的机器,其中localhost
默认为IPv6地址::1
,但在postgresql.conf
listen_addresses
设置为127.0.0.1
或0.0.0.0
而不是*
或正在使用一个使用C库的较旧的PostgreSQL,它没有透明的IPv6支持。
将listen_addresses
更改为localhost
,并确保localhost
parsing为IPv4和IPv6地址,或将其设置为::1, 127.0.0.1
以明确指定IPv4和IPv6。 或者只是设置为*
来监听所有接口。 或者,如果您不关心IPv6,请连接到127.0.0.1
而不是localhost
。
看到这个谷歌search或这个堆栈溢出search更多的信息。
(即使我投了票,因为我投了移民问题)。