Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 246 Bytes

kill_everything_running_on_certain_port.md

File metadata and controls

10 lines (7 loc) · 246 Bytes

Kill Everything Running On A Certain Port

You can quickly kill everything running on a certain port with the following command.

sudo kill `sudo lsof -t -i:3000`

This gets a list of pids for all the processes and then kills them.