Skip to content

Instantly share code, notes, and snippets.

@matthewh806
Last active January 12, 2017 08:57
Show Gist options
  • Select an option

  • Save matthewh806/10ce60157fe7312d18cbec5cfd9616ff to your computer and use it in GitHub Desktop.

Select an option

Save matthewh806/10ce60157fe7312d18cbec5cfd9616ff to your computer and use it in GitHub Desktop.
Terminate process running on specific port
lsof -i TCP:8086 | awk '/LISTEN/{print $2}' | xargs kill -9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment