Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
远程连接时出现错误,错误内容类似于
无法连接到服务器:连接超时 (0x0000274C/10060) 服务器是否在主机 x 上运行并接受端口 5432 上的 TCP/IP 连接?
请帮帮我
打开你的终端并写
service postgresql status
如果它说它没有运行而不是写
service postgresql start
如果该服务已经在运行,则通过以下方式检查您的 postgresql 服务的侦听端口
netstat -an | grep postgresql
结果将显示它正在侦听的端口。然后您可以使用命令连接数据库
psql -h localhost -p port_you_found -U postgres