How to debug gunicorn failure issues? (Worker failed to boot)

前端 未结 3 1730
醉酒成梦
醉酒成梦 2021-01-03 18:16

I have a Django web application that uses Gunicorn and runs good locally, but when I deploy app on EC2, I see that Gunicorn is failing:

 $ gunicorn_django -b         


        
3条回答
  •  心在旅途
    2021-01-03 19:21

    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

提交回复
热议问题