Skip to content

Instantly share code, notes, and snippets.

@mimiflynn
Last active September 14, 2016 15:36
Show Gist options
  • Save mimiflynn/57100b83072c526a27e9 to your computer and use it in GitHub Desktop.
Save mimiflynn/57100b83072c526a27e9 to your computer and use it in GitHub Desktop.
What process is using my port?

Find that process thats using the port you want:

lsof -i :4000

If you don't care and just want to kill it:

sudo fuser -k 80/tcp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment