linux who is using port code example
Example 1: ubuntu check process on port
sudo lsof -i:22
Example 2: ports in use linux
# To see ports in use
sudo lsof -i -P -n | grep LISTEN
sudo netstat -tulpn | grep LISTEN
sudo lsof -i:22
# To see ports in use
sudo lsof -i -P -n | grep LISTEN
sudo netstat -tulpn | grep LISTEN