I have a wsgi.ini
file in my project, and I use uwsgi wsgi.ini
to run my project.But when I change the django code,I want to restart the project instead kill uwsgi then reload it. The uwsgi official document provide the following methods:
# using kill to send the signal
kill -HUP `cat /tmp/project-master.pid`
# or the convenience option --reload
uwsgi --reload /tmp/project-master.pid
# or if uwsgi was started with touch-reload=/tmp/somefile
touch /tmp/somefile
But I don't have a project-master.pid
file in /tmp
catalog in my system(centOS).
.pid
file and what content should in this file? I find the anwser. project-master.pid
is set in wsgi.ini
file, you should set pidfile=/tmp/project-master.pid
first. Then use uwsgi to start server: uwsgi wsgi.ini
.After you start it, you can see a project-master.pid
file in /tmp
catalog. When you want to reload uwsgi server, you can use such command to restart server: uwsgi --reload /tmp/project-master.pid
.