【PostgreSQL】FATAL: Ident authent
2019-11-25 本文已影响0人
周易与交易策略
问题描述
项目部署在服务器上(数据库postgresql同样是安装在该服务器上),启动时发现报错,org.postgresql.util.PSQLException: FATAL: Ident authentication failed for user "ptms"。
问题原因
postgresql的一个配置文件pg_hba.conf中没有信任该服务器ip导致报错。
解决办法
修改pg_hba.conf配置文件相应的地方,将其改为trust。
如果找不到该文件,可使用如下命令进行查找
find / -name pg_hba.conf
重新启动postgresql服务,即可!
systemctl restart postgresql-10.service