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.

Rails サーバーを同時に立ち上げる方法 プログラミング学習45日目

Posted at

##Rails sをしたらエラーが、、、
めちゃめちゃ長いエラーが出た後最後にこのようなメッセージが書かれていました。

Address already in use - bind(2) for "127.0.0.1" port 3000 (Errno::EADDRINUSE)

すでにport 3000を使っていると言うことですね

多分この解決方法はいくつかあって
1.現在起動しているサーバーを消す
2.port 3000ではないサーバーを立ち上げる

今回は2をやってみたいと思います!

下記のようにrails sの後に-pをつけてport番号を指定すれば開くことができます!

bundle exec rails s -p 3001
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?