1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

TomcatプロセスをKillする方法

Posted at

何度も遭遇するたびに調べているのでいい加減メモ。

※「ローカルホストのTomcatサーバーに必要なポートがすでに使用されている」ときに使用。

cmd(コマンドプロンプト)で、順にコマンドを実行。

netstat -ano | findstr 8080

プロセスの表示順は次の通り。

プロトコル ローカルアドレス      外部アドレス       状態      PID
TCP        0.0.0.0:8080    0.0.0.0:0   LISTENING  19508

taskkillコマンドの強制終了(/F)にて、PIDを指定してプロセスをkill。

taskkill /F /pid 19508

以上。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?