PostgreSQL 连接问题 FATAL: no pg_hba.conf entry for host

前端之家收集整理的这篇文章主要介绍了PostgreSQL 连接问题 FATAL: no pg_hba.conf entry for host前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

The server doesn't grant access to the database: the server reports
FATAL: no pg_hba.conf entry for host "192.168.0.123",user "postgres",database "postgres" FATAL: no pg_hba.conf entry for host "192.168.0.123",database "postgres"


Postgresql数据库为了安全,它不会监听除本地以外的所有连接请求,当用户通过JDBC访问是,会报一些如下的异常:

org.postgresql.util.PsqlException: FATAL:nopg_hba.confentryforhost

解决这个问题,只需要在Postgresql数据库的安装目录下找到/data/pg_hba.conf,找到“# IPv4 local connections:”

在其下加上请求连接的机器IP

hostall all 127.0.0.1/32 md5

32是子网掩码的网段;md5是密码验证方法,可以改为trust

原文链接:https://www.f2er.com/postgresql/195926.html

猜你在找的Postgre SQL相关文章