为什么我无法用navicat连接centos下的postgresql

navicat提示如下错误

postgre服务器一切正常

pg_hba.conf文件已经修改

postgresql.conf已经修改

1 首先试下可以ping通虚拟的IP地址不 也即是 ping 192.168.0.80

2 telnet端口试下通不通   telnet 192.168.0.80 5432

3 检查linux防火墙是否开启,保持启动的话,一种是关闭,另外一中是添加过滤  

systemctl status firewalld.service  systemctl stop firewalld.service

-A INPUT -p tcp -m state --state NEW -m tcp --dport 5432 -j ACCEPT