Created
October 1, 2021 08:29
-
-
Save Knase/07977c369100bc93aba0279bd6d45501 to your computer and use it in GitHub Desktop.
To check the listening ports and applications on 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
sudo lsof -i -P -n | grep LISTEN | |
sudo netstat -tulpn | grep LISTEN | |
sudo lsof -i:22 ## see a specific port such as 22 ## | |
sudo nmap -sTU -O IP-address-Here | |
ps aux | grep mysqld |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment