[Fixed]-Restarting the Gunicorn after change in my code

1👍

You can restart gunicorn if you are in ubuntu:

sudo service restart gunicorn

As you have killed the process you need to start it:

sudo service gunicorn start

0👍

Read the documentation for Gunicorn
http://gunicorn.org/#quickstart.

If you’d followed the tutorial this line shows how to restart your unicorn service…

gunicorn -w 4 your_app:app

Leave a comment