Answers for "how to see what ports are being used"

16

find out process using port windows

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

check which application is using port

In Windows CMD/Powershell:
netstat -aon | findstr '[port_number]'
Posted by: Guest on October-02-2020
7

see what ports are in use

Get-Process -Id (Get-NetTCPConnection -LocalPort portNumber).OwningProcess
Posted by: Guest on April-02-2020
0

how to check listening ports on a server

$ sudo netstat -plnt
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address               Foreign Address             State       PID/Program name
tcp        0      0 0.0.0.0:3306                0.0.0.0:*                   LISTEN      3686/mysqld
tcp        0      0 :::443                      :::*                        LISTEN      2218/httpd
tcp        0      0 :::80                       :::*                        LISTEN      2218/httpd
tcp        0      0 :::22                       :::*                        LISTEN      1051/sshd
Posted by: Guest on June-25-2020
0

how to check listening ports on a server

sudo ss -tulwn | grep LISTEN
Posted by: Guest on June-25-2020

Code answers related to "how to see what ports are being used"

Browse Popular Code Answers by Language