Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

rails server on cloud 9 IDE getting killed

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

like image 783
AV94 Avatar asked Dec 28 '14 15:12

AV94


1 Answers

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)

like image 131
Alex Avatar answered Oct 11 '22 07:10

Alex