pgAdmin3 无法登陆postgresql数据库,提示内容如下:

时间:2021-01-22 12:07:19
Server doesn't listen
The server doesn't accept connections: the connection library reports 
could not connect to server: Connection timed out (0x0000274C/10060) Is the server running on host "211.103.231.66" and accepting TCP/IP connections on port 5432? 
If you encounter this message, please check if the server you're trying to contact is actually running PostgreSQL on the given port. Test if you have network connectivity from your client to the server host using ping or equivalent tools. Is your network / VPN / SSH tunnel / firewall configured correctly? 

......

麻烦高手指导下,谢谢

8 个解决方案

#1


postgresql启动没有

#2


服务器端postgresql启动了

#3


不是登陆本地数据库,远程登录服务器端得postgresql数据库
本地IP为172.16.1.101

postgresql.conf配置
listen_addresses = '*'          
                                                                          
port = 5432       


pg_hba.conf 配置
IPv4 local connections:
host    all         all         127.0.0.1/32          trust
host    all         all         0.0.0.0/0             md5
host    all         all         172.16.1.101/240      md5

#4


请高手赐教!谢谢

#5


1. 确认 211.103.231.66 5432 的数据库已经启动;
2. 我看你的pg_hba.conf 的配置写得有问题

host    all         all         172.16.1.101/240      md5 

应该改为

host    all         all         172.16.1.101/32      md5 

#6


你的数据库是不是没有开启监听,需要手动开启,不然安全模式下拒绝连接

#7


配置文件的问题。
试试5楼的方法。

#8


pg_hba.conf没有设置

#1


postgresql启动没有

#2


服务器端postgresql启动了

#3


不是登陆本地数据库,远程登录服务器端得postgresql数据库
本地IP为172.16.1.101

postgresql.conf配置
listen_addresses = '*'          
                                                                          
port = 5432       


pg_hba.conf 配置
IPv4 local connections:
host    all         all         127.0.0.1/32          trust
host    all         all         0.0.0.0/0             md5
host    all         all         172.16.1.101/240      md5

#4


请高手赐教!谢谢

#5


1. 确认 211.103.231.66 5432 的数据库已经启动;
2. 我看你的pg_hba.conf 的配置写得有问题

host    all         all         172.16.1.101/240      md5 

应该改为

host    all         all         172.16.1.101/32      md5 

#6


你的数据库是不是没有开启监听,需要手动开启,不然安全模式下拒绝连接

#7


配置文件的问题。
试试5楼的方法。

#8


pg_hba.conf没有设置