Answers for "check what uses port"

16

check port windows

netstat -aon
Posted by: Guest on August-15-2020
3

How to check if port is in use in

sudo lsof -i -P -n | grep LISTEN
sudo netstat -tulpn | grep LISTEN
sudo ss -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 October-13-2021
0

check if a port is working

# On the server itself:
netstat -an

# From outside
telnet host port  #Windows 
telnet host:port  #Unix systems
Posted by: Guest on March-22-2022

Code answers related to "TypeScript"

Browse Popular Code Answers by Language