Answers for "see process on port linux"

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
0

bash list process on port

sudo lsof -i:3000
#Just change the port 3000
Posted by: Guest on February-19-2021
-1

See process on port

netstat -ano | findstr 8080Code language: Bash (bash)
Posted by: Guest on May-12-2021
0

how to open port by fuser

root@exampleuser-X55CR:~# fuser -v -n tcp 80
root@exampleuser-X55CR:~# fuser -v -n tcp 80
                     USER        PID ACCESS COMMAND
80/tcp:              root       3846 F.... nc
root@exampleuser-X55CR:~#
Posted by: Guest on June-09-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language