Answers for "check services using port"

39

linux how to see ports in use

# Any of the following
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
Posted by: Guest on March-31-2020
16

find out process using port windows

netstat -ano | findstr 8080
Posted by: Guest on December-09-2019

Code answers related to "check services using port"

Browse Popular Code Answers by Language