Comments on "A server is already running" error in rails
Parent
"A server is already running" error in rails
+2
−0
..$ rails s
=> Booting Puma
=> Rails 5.2.6 application starting in development
=> Run `rails server -h` for more startup options
A server is already running. Check /home/istiak/ruby/qpixel/tmp/pids/server.pid.
Exiting
I was using my laptop. But, suddenly my laptop had turned off (for low battery). When I turned on my laptop and trying to run the server, I got above error. What should I do now? I had tried to go to gateway (http://localhost:3000/) but I couldn't visit that site.
Post
+1
−1
To fix this:
First, run cat
command on the file listed in the message. e.g:
cat /home/XXX/ruby/YYY/tmp/pids/server.pid
cat
command will return a 5 digit number. e.g
12345
12345
is the PID of the process that is running the current rails server.
Then kill the running process using:
kill -9 12345
Then you can run the server using:
rails s
0 comment threads