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
- Django FormSetView with custom validation
- Dealing with date formats from JSON to save in Django DateField
- How to access auto increment id of any model using form in django?
- Django CMS Placeholder: Plugin Blacklist
Source:stackexchange.com