Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们通过这个命令在我们的服务器上运行一个 django 应用程序。
python manage.py runfcgi host=127.0.0.1 port=8070 pidfile=/home/ubuntu/autoleg_webapp/autoleg_clients.pid --settings=PROD_Settings
我对 PROD_Settings.py 文件进行了一些更改,我现在想重新启动,我该怎么做?
Tour 进程的 PID 在 pidfile 中,所以你基本上应该杀死这个 PID。
为此,请在 shell 中执行以下命令:
kill `cat /home/ubuntu/autoleg_webapp/autoleg_clients.pid`
由于反引号,您的 shell 将替换cat home/ubuntu/autoleg_webapp/autoleg_clients.pid为文件中的 PID。
cat home/ubuntu/autoleg_webapp/autoleg_clients.pid