django后台用的是postgresql数据库,但是启动是的时候报如下错误:

psql: FATAL: Ident authentication failed for user “postgres”

这个一般是pg_hba.conf文件中未设置 成功 ,方法如下:

先找出pg_hba.conf的位置 find / -name pg_hba.conf

一般位置如下: /var/lib/pgsql/9.5/data/pg_hba.conf

取消那些注释#, 特别是最后几行

local   replication     postgres                                trust
host    replication     postgres        127.0.0.1/32            trust
host    replication     postgres        ::1/128                 trust

然后重新 数据库就好了

service postgresql-9.5 restart


作者:若闻
来源:CSDN
原文:https://blog.csdn.net/wang1144/article/details/53637990
版权声明:本文为博主原创文章,转载请附上博文链接!

发表评论

邮箱地址不会被公开。 必填项已用*标注