我正在尝试在django项目中配置postgresql,这是我的设置
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'newdb',
'USER': 'vishnu',
'PASSWORD': 'dsvv',
'HOST': 'localhost',
'PORT': '',
}
}
当我运行syncdb命令时,它会给出错误“OperationalError:FATAL:Ident authentication for user”vishnu“”。我尝试了这个链接中给出的答案 “psql: FATAL: Ident authentication failed for user "postgres"”以及其他一些链接,但它仍然给我错误。
问题是什么我可以解决它?