rails server on cloud 9 IDE getting killed

2020-07-16 02:57发布

问题:

I am learning ruby on rails from "Ruby on rails tutorial" by Michael Hartl.,I an working on cloud9 IDE.The problem is that after starting server,when I open the link on browser,server is getting killed.Some time home page is bring dispalyed and when i type another link manually,server is getting killed

Started GET "/static_pages/about" for 117.213.110.126 at 2014-12-28 15:44:08 +0000 Processing by StaticPagesController#about as HTML Rendered static_pages/about.html.erb within layouts/application (0.5ms) Killed

回答1:

Try to kill all spring process . First you can see all of them like: ps aux

and then you can kill like this: pkill -f "spring app", or by pid : kill -9 1111(your PID)