Skip to content

Instantly share code, notes, and snippets.

@mauriballes
Created March 15, 2022 00:25
Show Gist options
  • Save mauriballes/964ecb1f788d459895d4fe77aca909da to your computer and use it in GitHub Desktop.
Save mauriballes/964ecb1f788d459895d4fe77aca909da to your computer and use it in GitHub Desktop.
Kill Process using a Port
# Show process
lsof -i:8080
# Kill process listed
kill -9 $(lsof -t -i:8080)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment