当登录postgresql遇到error,如下:
> psql -U postgres
psql: error: FATAL: Peer authentication failed for user “postgres”

(1)修改本地连接登录的认证方式:
找到 PostgresQL 的 data 目录下的 pg_hba.conf 文件。一般情况下,PostgresQL的默认data问价目录在/var/lib/目录下,也可以使用以下命令找到对应位置:

    sudo locate pg_hba.conf

(2)然后编辑 pg_hba.conf 文件
=====================================================================
# Database administrative login by Unix domain socket
local   all             postgres                                peer(改为trust)

# TYPE  DATABASE        USER            ADDRESS                 METHOD

# "local" is for Unix domain socket connections only
local   all             all                                     peer(改为trust)
=====================================================================

(3)重启postgresql服务
> service postgresql restart

Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐