[Django]-How to debug gunicorn failure issues? (Worker failed to boot)

46👍

Try running with --preload as an argument to gunicorn_django – it should show you the error the workers are having when starting. See this bug

29👍

You need --debug --log-level debug

7👍

In my case I had to run gunicorn_django --bind example.com:8001 from the same folder as my manage.py file.

👤mik.ro

Leave a comment