Ubuntu サーバーで自分で作成したいくつかのプロセスを実行し、それらを強制終了するために次のコマンドを実行します。
sudo fuser -n tcp PORT
kill -9 PID-DISPLAYED
シェル スクリプトを使用してポートから PID を取得し、シェル スクリプトを実行して PID を強制終了する方法はありますか。
ありがとう。
フューザーはそれを殺すことができます:
-k, --kill
Kill processes accessing the file. Unless changed
with -SIGNAL, SIGKILL is sent. An fuser process
never kills itself, but may kill other fuser processes.
The effective user ID of the process executing fuser is
set to its real user ID before attempting to kill.