Stop uwsgi instance - Shuang0420/Shuang0420.github.io GitHub Wiki

Check running instances

ps ax|grep uwsgi

Stop all instances

pkill -f uwsgi -9

Stop specific instance Add a pidfile to your command:

uwsgi test.ini --pidfile /tmp/test.pid

Stop instance:

uwsgi --stop /tmp/test.pid