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.

Rails コマンドがうんともすんとも言わないときの対処法

Posted at

症状

rails コマンドを実行したときに、10 分以上待っても何も反応しないことがある。

Shell
bundle exec rails generate scaffold blog title:string body:text
# 10 分以上待っても反応しない

かといって、エラーが出るわけでもない。完全に止まっている状態になる。

対処方法

この場合、かなりの確率で Spring に原因がある場合がある。

Spring を一度ストップしてあげると正常に動くようになる。

Shell
bundle exec spring stop
Spring stopped.

これで rails コマンドが正常に実行できるようになる。

参考サイト

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?