Created
February 26, 2016 16:23
-
-
Save marcusshepp/4c0b82a4ff95486a8cbf to your computer and use it in GitHub Desktop.
how to kill a port on mac os x 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
lsof -i tcp:8000 # or what ever port # you need to search for | |
kill -9 <PID> # replace <PID> with the process PID you want to kill |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment