LoginSignup
0
0

More than 1 year has passed since last update.

Rails c 動かない現象

Posted at

ターミナルで Rails c と入力すると以下のようになりました。
入力できず、反応なし…。

ubuntu:~/environment/tasklist (main) $ rails c
#これ以降空白

原因としてはプロジェクトを削除したり作成をしたりした際にコンソールを切り忘れたようです。
Rails cをするとspringも一緒に動くとのことだったので動いているspringを検索。

ubuntu:~/environment/tasklist (main) $ ps aux | grep spring
ubuntu   19047  0.0  1.5 396400 15716 pts/1    Sl   04:50   0:00 spring server | tasklist | started 25 mins ago
ubuntu   22759  0.0  0.1  14860  1068 pts/5    S+   05:15   0:00 grep spring
ubuntu:~/environment/tasklist (main) $ kill -9 19047
#不要なものを切りました

再度 Rails cを開きます。

ubuntu:~/environment/tasklist (main) $ rails c
Running via Spring preloader in process 22936
Loading development environment (Rails 6.1.4)
3.0.0 :001 > 

無事に開きました。
見えないところで作動していると見落としがちですね…。

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