Stopping all instances of Ruby on Rails running on a certain port

How to find and stop all instances of Rails running on a specific port

I was having a hard time getting my Rails webserver to restart after it having a bit of an issue. The process to handle most apps when this happens is to locate the PID (Process ID) of the thing that is broken and restart it.

An easy way to do this with Rails is to type the following into your Terminal;

lsof -i :3000

Which looks for all processes running on port 3000 (the most common port for things like Puma, Webrick and Thin to run on) and returns them all as a table.

One of the columns of the table will be the PID for the process, copy it and paste it into the following line which will go into your Terminal;

kill -9 PID

Replacing ‘PID’ with the PID you just copied.

This will stop all processes relating to that PID, once this is done you should be good to go ahead and restart your rails server.

If you prefer video

I’ve explained the use of lsof in a video.

Recent posts View all

VS CodeWeb Dev

Select multiple lines in VS Code

How to select multiple lines to edit at once within VS Code

VS Code Web Dev

Move a line up or down with VS Code

A quick tip on moving lines up or down a file using your keyboard in VS Code