Skip to content

Instantly share code, notes, and snippets.

View vic778's full-sized avatar
🎯
Focusing

Victor Barh vic778

🎯
Focusing
View GitHub Profile
@vic778
vic778 / stop_rails_running_server.md
Created August 6, 2023 11:16 — forked from Tresor11/stop_rails_running_server.md
How to fix: Rails server is already running. Check /path/path/path/path/tmp/pids/server.pid.

To stop all running Rails servers type the following is the terminal

  kill -9 $(lsof -i tcp:3000 -t)