There is a signal_pidfile problem

Implementation: uwsgi --stop uwsgi.pid This problem will occur
signal_pidfile () / kill (): No such process [core / uwsgi.c line 1693]
Solution:
https://www.jianshu.com/p/ 56eb80a0ff83
only needs to kill the previous ini process:
so you only need to kill all the previous ini . Since you restart it, you must shut down and start one manually. It is good to
kill all uwsgi ini processes: killall -s INT uwsgiView
the processes related to uwsgi ps -auxgrep uwsgi
start uwsgi: uwsgi --ini uwsgi.ini
and then execute uwsgi --stop uwsgi.pid again without error

Published 129 original articles · Like 43 · Visits 100,000+

Guess you like

Origin blog.csdn.net/nbxuwentao/article/details/105604144