Skip to content

Instantly share code, notes, and snippets.

@stevenschobert
Last active December 28, 2015 03:09
Show Gist options
  • Save stevenschobert/7433602 to your computer and use it in GitHub Desktop.
Save stevenschobert/7433602 to your computer and use it in GitHub Desktop.
How to find and kill a node process hogging a port.
# grep for process
ps -ax | grep node
# find the process id and kill it
kill -9 PROCESS_ID
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment