PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Django-Einstellung:psycopg2.OperationalError:FATAL:Peer-Authentifizierung für Benutzer indivo fehlgeschlagen

Ich habe ein ähnliches Problem und habe es mit dieser Antwort gelöst durch Hinzufügen von localhost an die Datenbank HOST Einstellungen in settings.py, sodass Ihre Datenbankeinstellungen wie folgt aussehen sollten:

DATABASES = {
    'default':{
        'ENGINE':'django.db.backends.postgresql_psycopg2', # '.postgresql_psycopg2', '.mysql', or '.oracle'
        'NAME':'indivo', # Required to be non-empty string
        'USER':'indivo', # Required to be non-empty string
        'PASSWORD':'ritvik',
        'HOST':'localhost', # <- Changed from empty string to localhost
        'PORT':'', # Set to empty string for default.
        },
}