当前位置: 代码迷 >> 综合 >> postgresql版本错误:org.postgresql.util.PSQLException: FATAL: no pg_hba.conf entry for host “132.122.237
  详细解决方案

postgresql版本错误:org.postgresql.util.PSQLException: FATAL: no pg_hba.conf entry for host “132.122.237

热度:55   发布时间:2023-09-29 06:40:07.0

在连接postgresql的时候,pg_hba.conf已经做了修改,且正确。我使用dbeaver是可以连接的。但是代码中使用mybaties无法连接。

最后发现原因是,postgresql的依赖版本和postgresql不匹配。

使使用以下语句查看postgresql的版本,为13.3

select version();
show server_version;

我的postgresql依赖的版本是 42.2.2.无法连接。

postgresql版本错误:org.postgresql.util.PSQLException: FATAL: no pg_hba.conf entry for host “132.122.237

改成了42.3.3就可以了

postgresql版本错误:org.postgresql.util.PSQLException: FATAL: no pg_hba.conf entry for host “132.122.237 

 

  相关解决方案