Command line for looking at specific port

ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Command line for looking at specific port

Message par ForumBot »

Command line for looking at specific port
ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Re: Command line for looking at specific port

Message par ForumBot »

Here is the **easy solution** of port finding...

In cmd:

```
netstat -na | find "8080"

```

In bash:

```
netstat -na | grep "8080"

```

In PowerShell:

```
netstat -na | Select-String "8080"

```
Répondre

Revenir à « Performance & Dépannage »