26👍
✅
The general solution to problems like this is to do ps ax|grep gunicorn
to look for the relevant process, then do kill xxxx
where xxxx is the number in the first column.
20👍
Just found this also – pkill
– which will kill all processes matching the search text:
$ pkill gunicorn
No idea how well supported it is, but can confirm that it works on Ubuntu 12.04
(from http://www.howtogeek.com/howto/linux/kill-linux-processes-easier-with-pkill/)
- How can I use AWS's Dynamo Db with Django?
- TypeError: ‘DoesNotExist’ object is not callable
- Change default Django REST Framework home page title
- Subclassing Django ModelForms
- Many to many relationships with additional data on the relationship
- Using the URLconf defined in mysite.urls, Django tried these URL patterns, in this order:
- How do I get django runserver to show me DeprecationWarnings and other useful messages?
- Return image url in Django Rest Framework
- Accessing django project in LAN systems
- What method attributes are used in Django?
Source:stackexchange.com