Created
March 24, 2017 01:34
-
-
Save sharepointoscar/42321dfaec57c6b0df7216165ed15e81 to your computer and use it in GitHub Desktop.
Kill all processes running on port 80
This file contains hidden or 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 -t -i tcp:80 -s tcp:listen | sudo xargs kill |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you! You saved my time.