Skip to content

Instantly share code, notes, and snippets.

@simsketch
Created March 13, 2015 10:16
Show Gist options
  • Save simsketch/32f546825310684471bf to your computer and use it in GitHub Desktop.
Save simsketch/32f546825310684471bf to your computer and use it in GitHub Desktop.
Kill port
List the processes running on ports
netstat -a -o -n
Find the one you need. I search for 0.0.0.0:8080 and get the PID.
taskkill /F /PID <pid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment