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 ファイルに変更を加えました。今すぐ再起動したいのですが、どうすればよいですか?
ツアー プロセスの PID は pidfile にあるので、基本的にはこの PID を kill する必要があります。
これを行うには、シェルで次を実行します。
kill `cat /home/ubuntu/autoleg_webapp/autoleg_clients.pid`
バックティックのおかげで、シェルはcat home/ubuntu/autoleg_webapp/autoleg_clients.pidファイル内の PID に置き換えられます。
cat home/ubuntu/autoleg_webapp/autoleg_clients.pid