Created
March 15, 2022 00:25
-
-
Save mauriballes/964ecb1f788d459895d4fe77aca909da to your computer and use it in GitHub Desktop.
Kill Process using a Port
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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