在使用如下命令打开PostgreSQL
psql -U postgres
提示psql: 致命错误: 对用户"postgres"的对等认证失败
使用如下命令找到postgreSQL的配置文件,vi进入该文件进行修改
find / -name pg_hba.conf 或者 locate pg_hba.conf
将peer改为MD5
然后重启服务:
service postgresql restart 或者: systemctl restart postgresql