0

Ubuntu サーバーで自分で作成したいくつかのプロセスを実行し、それらを強制終了するために次のコマンドを実行します。

sudo fuser -n tcp PORT
kill -9 PID-DISPLAYED

シェル スクリプトを使用してポートから PID を取得し、シェル スクリプトを実行して PID を強制終了する方法はありますか。

ありがとう。

4

2 に答える 2

1

フューザーはそれを殺すことができます:

 -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.
于 2013-06-19T11:54:25.803 に答える