因本地资源有限,在公共测试环境搭建了PGsql环境,从数据库本地localhost访问正常,在相同网段的远程机器访问报如下错误
“server closed the connection unexpectedly. This probably means the server terminated abnormally before or while processing the request”
检查pg日志,报错日志为FATAL: no pg_hba.conf entry for host "XX.XX.XX.XX",经查阅,这条错误的原因是因为客户端远程访问postgresql受限所致,因为postgresql默认情况下除本机外的机器是不能连接的。修改pg_hba.conf与postgresql.conf两个配置文件即可解决。
修改方式请参考
《postgresql 报错 FATAL: no pg_hba.conf entry for host 未配置允许远程连接 解决方法》
https://blog.csdn.net/whatday/article/details/128579053