Skip to content

Instantly share code, notes, and snippets.

@chrismitchell
Created March 12, 2014 21:10
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save chrismitchell/9516420 to your computer and use it in GitHub Desktop.
TCPServer Error: Address already in use - bind(2)
Type this in your terminal to find out the PID of the process that's using the 3000 port:
$ lsof -wni tcp:3000
Then, use the number in the PID column to kill the process:
$ kill -9 PID
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment