本文主要是介绍psql -U myusername mydb 错误:psql: FATAL: Ident authentication failed for user mypguser,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
psql: FATAL: Ident authentication failed for user"mypguser"请编辑你的pg_hba.conf,这个文件一般位于
/etc/postgresql/X.Y/main/pg_hba.conf
,X.Y是你的PostgreSQL的版本号,将下面行的peer改为trust:
local all all trust # replace ident or peer with trust
- 如果出现下面的错误:
psql: FATAL: Peer authentication failed foruser "mypguser"
请仍然修改pg_hba.conf文件,该下面行的peer为md5:
完成上面的修改后请重新加载postgresql:
local all all md5 # replace peer with md5
/etc/init.d/postgresql reload
这篇关于psql -U myusername mydb 错误:psql: FATAL: Ident authentication failed for user mypguser的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!