linux-centos-pgsql-Ident authentication failed for user “postgres”錯誤出現解決方法


首先,要找到pg_hba.conf\

-->cd /var/lib/pgsql/data

-->vi pg_hba.conf

然后,將里面的配置文件修改如下:

# TYPE DATABASE USER ADDRESS METHOD

# "local" is for Unix domain socket connections only
#load all all    peer
local all all   md5
# IPv4 local connections:
#host all all 127.0.0.1/32 ident
host all all 127.0.0.1/32 md5
host all all 140.143.15.136/24 md5
host all all 112.65.61.17/32 md5
host all all 112.64.119.234/32 md5
host all all 112.65.61.93/32 md5

host  all  all  all  md5
# IPv6 local connections:
host all all ::1/128 ident
# Allow replication connections from localhost, by a user with the
# replication privilege.
#local replication postgres peer
#host replication postgres 127.0.0.1/32 ident
#host replication postgres ::1/128 ident

注意上面標記橙色的配置

 

以上兩句話分別表示

 

1.本地訪問是md5驗證方式

 

2.遠程主機,任意ip訪問,md5驗證方式 

 

 

 

修改完,重啟pgsql服務

-->service postgresql restart

然后,就可以在linux本機上訪問本地的postgres數據庫了

測試語句如下:

首先,直接在root用戶下運行,如下:

-->psql -h 127.0.0.1 -d postgres -U postgres

這句話的意思是訪問本地數據庫,實例為postgres

然后,如果想退出該操作模式,則按Ctrl+z,即可退出該模式

 

 

看了要給好評


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM