You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When following the instructions for the docker install, the example .env.prod.dist file uses the env variable POSTGRES_PASSWORD for the database password, but using it I get the following error on the celery container start and when running ./manage.py migrate --noinput:
WARNING/Beat] django.db.utils.OperationalError: fe_sendauth: no password supplied
Reproduction
Hi,
When following the instructions for the docker install, the example .env.prod.dist file uses the env variable
POSTGRES_PASSWORD
for the database password, but using it I get the following error on the celery container start and when running./manage.py migrate --noinput
:WARNING/Beat] django.db.utils.OperationalError: fe_sendauth: no password supplied
Using
PGPASSWORD
instead works.Steps to reproduce:
docker-compose.prod.yml
file..env.prod.dist
file and save it as.env.prod
.env.prod
as desired, using POSTGRES_PASSWORD as the env variable for the database password.docker-compose -f docker-compose.prod.yml up
WARNING/Beat] django.db.utils.OperationalError: fe_sendauth: no password supplied
Expected Behavior
Containers should start without error, using
PGPASSWORD
instead ofPOSTGRES_PASSWORD
fixes the issue.Actual Behavior
Celery container startup will fail with the error
WARNING/Beat] django.db.utils.OperationalError: fe_sendauth: no password supplied
Environment
Firefox
Kubuntu 20.04
The text was updated successfully, but these errors were encountered: