How can I see from the cmd if port 8080 is open?

2

How can I know if port 8080 is open? I am using a server with Windows

    
asked by Alejo 13.04.2018 в 17:27
source

2 answers

3

Use the following command:

netstat -an | find ":8080"

Or you can also try findstr

netstat -na | findstr "8080"

to verify if port 8080 is open.

  

To reduce the results. You can also filter by LISTENING , ESTABLISHED , TCP . However, it is sensitive to upper and lower case.

Note: Executing the command if it does not show anything means that the port is NOT being listened to (not in use)

    
answered by 13.04.2018 / 17:36
source
0

In Windows, you execute cmd and type netstat -an

    
answered by 13.04.2018 в 17:37