PostgreSQL 连接问题 FATAL: no pg_hba.conf entry for host
Posted on 2021-12-14 09:42 且行且思 阅读(663) 评论(0) 编辑 收藏 举报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
# IPv4 local connections:
host all all 127.0.0.1/32 md5
host all all 0.0.0.0/0 md5
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步