Created
October 25, 2011 00:26
-
-
Save kaznum/1310935 to your computer and use it in GitHub Desktop.
looking for and killing processes to use tcp 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
# to look for the processes to use tcp 443 | |
fuser -n tcp 443 | |
# to kill all processes to use tcp 443 | |
fuser -kn tcp 443 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment