Hello,
I am new to django. I was trying to connect with postgredb and i am getting this error.
django.db.utils.OperationalError: fe_sendauth: no password supplied.
i have passed this values to the variables in settings.py
DATABASES = {
‘default’: {
‘ENGINE’: ‘django.db.backends.postgresql_psycopg2’,
‘NAME’: ‘db’,
‘USER’: ‘usename’,
‘PASSOWORD’: ‘password’,
‘HOST’:‘localhost’,
‘PORT’: ‘5432’,
}
}
Thanks!