Last Updated: February 25, 2016
·
816
· coreytrombley

Ghost Localhost server

Dont you just hate when you run out of the office/house/building without quitting your server? I know I do. When i first started development this would be a daily occurrence. Here is a quick tip on getting rid of those hidden servers that are running on your machine. (this is the ruby version, I am sure this will work with most programing languages).

Picture
OH NO! No worries here is what you can do to fix this problem.

hit command+spacebar to open up spotlight
Picture

type: activity monitor
Picture

hit enter

You should see this screen.
Picture

In the finder bar of activity monitor
Picture

type: Ruby ( or the programing language that your using)
Picture

Click quit process
Picture

Force quit and your done! See that was not so hard...

Cheers and happy coding,
Corey

2 Responses
Add your response

Alternatively you can type "ps x" in terminal find ruby and then type "kill -9 <pid>" where <pid> is the number in the first column on the row of ruby (or whichever process you want).

Warning: that wouldn't let your process to execute any exit routines and just gets rid off the process. It should do the trick for WEBrick though. For safer quit strategy try "kill -3 <pid>"

over 1 year ago ·

@madgen Yeah that would be much faster.

over 1 year ago ·