Created
December 3, 2019 11:13
-
-
Save ricardoaugusto/3dd1cc45d07455bdbe167270ee234c15 to your computer and use it in GitHub Desktop.
Find and kill a process locking port 8000 on macOS Terminal
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
sudo lsof -i tcp:8000 | |
kill -9 PID |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment