0
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 3 years have passed since last update.

【Java】already in use の対処法

Last updated at Posted at 2020-04-16

already in use

portすでに使ってるよExceptionが出た時の確認コマンド。
よく忘れるから備忘録として書いておく。

今回はエラー文に「8080が使用中やで〜」と書いてあったので「8080」を閉じる想定です。

コマンド

$  sudo lsof -i:8080

上記コマンドを打つと、

COMMAND   PID  USER   FD   TYPE             DEVICE SIZE/OFF NODE NAME

こんな感じのリストが表示されるので、PIDを使って下記コマンドでportを閉じる。

$ sudo kill #{PID} 

もう一度 lsof コマンドを打つと何も表示されないので、
ポートが閉じたことを確認することができる。

まとめ

使用したポートは使い終わったら閉じないと後々めんどくさい……(自戒)

0
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
0
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?