postgres连接在ubuntu中被拒绝

时间:2013-03-07 12:24:32

标签: linux networking ubuntu service database-connection

远程连接时出错,错误说明

无法连接到服务器:连接超时(0x0000274C / 10060)服务器是否在主机x上运行并接受端口5432上的TCP / IP连接?

请帮帮我

1 个答案:

答案 0 :(得分:0)

打开你的终端然后写

"service postgresql status"
如果说它没有运行而不是写
"service postgresql start"
如果服务已经运行,那么通过
"netstat -an | grep postgresql"
检查postgresql服务的监听端口,结果将显示它正在侦听的端口。然后,您可以使用命令
"psql -h localhost -p port_you_found -U postgres"

连接数据库。