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?

# Address already in use - bind(2) for "127.0.0.1" port 3000 (Errno::EADDRINUSE)の解消法

Last updated at Posted at 2023-08-19

rails sコマンドを実行したところ、ローカルサーバーが起動できなくなった

error内容

$ rails s
=> Booting Puma
=> Rails 7.0.6 application starting in development
=> Run `bin/rails server --help` for more startup options
Puma starting in single mode...
* Puma version: 5.6.6 (ruby 3.1.2-p20) ("Birdie's Version")
*  Min threads: 5
*  Max threads: 5
*  Environment: development
*          PID: 21844
Exiting
/Users/username/.rbenv/versions/3.1.2/lib/ruby/gems/3.1.0/gems/puma-5.6.6/lib/puma/binder.rb:341:in `initialize': Address already in use - bind(2) for "127.0.0.1" port 3000 (Errno::EADDRINUSE)

port 3000はすでに使用されているとのこと

解決策

オープンしているファイルを一覧表示する

lsof -i:3000

lsof -i:3000とすることでポート番号3000のみを対象にする

image.png

指定したプロセスIDのプロセスを終了させる

kill -9 18844

kill -9 PIDとすることでプロセスIDを強制終了することができる

参考

【 lsof 】コマンド――オープンしているファイルを一覧表示する
【kill】Linuxでプロセスを終了させるコマンド

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?