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 開発サーバーを次のように実行しました。
nohup.out ./manage.py runserver
サーバーを停止するにはどうすればよいですか?
使用してみました:
nohup.out ./manage.py stop runserverしかし、それは機能していません。
nohup.out ./manage.py stop runserver
Django関連のpythonのプロセスIDを調べる
ps -ef | grep python kill -9 Process_id_no.
自動的に:
ps -ef|awk 'BEGIN{}{if(match($8, /python/))system("kill -9 " $2)}END{}'