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

Posted DoubleLi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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", user "postgres", database "postgres"

 

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

org.postgresql.util.PSQLException: FATAL: no pg_hba.conf entry for host

 

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

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

host all all 127.0.0.1/32 md5

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

以上是关于PostgreSQL 连接问题 FATAL: no pg_hba.conf entry for host的主要内容,如果未能解决你的问题,请参考以下文章

PostgreSQL问题解决--连接数过多

postgres启动报错FATAL: could not create semaphores: No space left on device

“致命:数据库系统正在关闭”,同时创建与 PostgreSQL 的连接

postgresql数据库连接数查询

postgresql出错could not create semaphores: No space left on device

postgresql出错could not create semaphores: No space left on device