0
0

More than 1 year has passed since last update.

WARN Address localhost:8080 is already in use.の解決策

Posted at

サーバー起動時に

 WARN  Address localhost:8080 is already in use.

と出た場合は、すでにそのポートが使用されています。

解決策

 lsof -i -P | grep 8080

でそのポートを使用していないか確認。

kill PID(プロセスID)

上記コマンドで消去できない場合は

kill -9 PID(プロセスID)

-9を使用して強制終了します。

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