Skip to content

Instantly share code, notes, and snippets.

@traumverloren
Last active May 8, 2017 07:53
Show Gist options
  • Save traumverloren/e9a76f773aecb6831ca6fb06fe7c72f5 to your computer and use it in GitHub Desktop.
Save traumverloren/e9a76f773aecb6831ca6fb06fe7c72f5 to your computer and use it in GitHub Desktop.
port in use error resolution

What to do if get error: Error: listen EADDRINUSE 0.0.0.0:8080:

  • To find out what is running on a port 8080: $ lsof -i tcp:8080
  • Kill those processes by referencing the PID: $ kill -9 PUT_PID_#_HERE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment