Skip to content

Instantly share code, notes, and snippets.

@bkbatchelor
Last active October 7, 2018 05:36
Show Gist options
  • Save bkbatchelor/d8e1f7be5d9d5af6adb1736cf8fa4b80 to your computer and use it in GitHub Desktop.
Save bkbatchelor/d8e1f7be5d9d5af6adb1736cf8fa4b80 to your computer and use it in GitHub Desktop.
Kill port process

Kill port process

netstat is being replace with 'ss'

$ ss -nlp | grep 9229

output

tcp    LISTEN    0     128     127.0.0.1:9229

users:(("node",pid=14191,fd=22))

kill process

$ kill 14191

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment