我無法使用我創建的帳戶(alex)連接到我的Linux Fedora安裝程序的本地Postgresql數據庫。我已經嘗試了很多不同的東西,包括將'方法'改爲md5等等。這是我的pg_hba.conf文件的副本:無法用我創建的用戶連接到本地Postgresql數據庫
local all all peer
local project alex peer
host all all 127.0.0.1/32 ident
host all all ::1/128 ident
用戶'alex'具有登錄權限和複製權限以及密碼(加密)。
psql -U alex -d project -h 127.0.0.1
psql: FATAL: Ident authentication failed for user "alex"
與 '-W' 開關強制密碼輸入會導致這樣的事情發生:
psql -U alex -d project -h 127.0.0.1 -W
Password for user alex:
psql: FATAL: Ident authentication failed for user "alex"