0

我们通过这个命令在我们的服务器上运行一个 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 文件进行了一些更改,我现在想重新启动,我该怎么做?

4

1 回答 1

2

Tour 进程的 PID 在 pidfile 中,所以你基本上应该杀死这个 PID。

为此,请在 shell 中执行以下命令:

kill `cat /home/ubuntu/autoleg_webapp/autoleg_clients.pid`

由于反引号,您的 shell 将替换cat home/ubuntu/autoleg_webapp/autoleg_clients.pid为文件中的 PID。

于 2012-06-20T19:03:22.390 回答