Created
December 18, 2018 14:45
-
-
Save xergiodf/80a8621ca9f3db2b22213a918b1d7ab6 to your computer and use it in GitHub Desktop.
3 simple options to know used ports in linux
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
# Option 1 | |
netstat -tulpn | grep 9090 | |
# Option 2 | |
sudo lsof -i -P -n | grep 9090 | |
# Option | |
sudo nmap -sT -O localhost |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment