About 990,000 results
Open links in new tab
  1. How do I find out which process is listening on a TCP or UDP port …

    Open a command prompt window (as Administrator) From "Start\Search box" Enter "cmd" then right-click on "cmd.exe" and select "Run as Administrator" Enter the following text then hit …

  2. Command line for looking at specific port - Stack Overflow

    Aug 17, 2012 · Is there a way to examine the status of a specific port from the Windows command line? I know I can use netstat to examine all ports but netstat is slow and looking at a specific …

  3. Windows Kill Process By PORT Number - Stack Overflow

    Mar 23, 2019 · Option 2 PowerShell Get-Process -Id (Get-NetTCPConnection -LocalPort portNumber).OwningProcess cmd C:\> netstat -a -b (Add -n to stop it trying to resolve …

  4. How do I interpret 'netstat -a' output - Stack Overflow

    3 This link has helped me a lot to interpret netstat -a A copy from there - TCP Connection States Following is a brief explanation of this handshake. In this context the "client" is the peer …

  5. How to close TCP and UDP ports via windows command line

    Dec 31, 2011 · Does somebody knows how to close a TCP or UDP socket for a single connection via windows command line? Googling about this, I saw some people asking the same thing. …

  6. How do I remove the process currently using a port on localhost in ...

    23 Open command prompt and issue below command netstat -ano|findstr "PID :8888" Output will show the process id occupying the port Issue below command to kill the PID taskkill /pid 8912 …

  7. Find the PID of a process that uses a port on Windows

    Apr 6, 2019 · Find the PID of a process that uses a port on Windows (e.g. port: "9999") netstat -aon | find "9999" -a Displays all connections and listening ports. -o Displays the owning …

  8. How to check what port a pod is listening on with kubectl and not ...

    Dec 19, 2019 · Note: It will work only if your container's base image supports the command netstat. and as per your Update section it seems it supports. Above solution is nothing but a …

  9. Kill tomcat service running on any port, Windows - Stack Overflow

    Feb 7, 2017 · 1) Go to (Open) Command Prompt (Press Window + R then type cmd Run this). 2) Run following commands For all listening ports netstat -aon | find /i "listening" Apply port filter …

  10. Kill a Process by Looking up the Port being used by it from a .BAT

    Jun 1, 2011 · netstat -a -n -o Just run it and find out. According to the command line help, it "Displays all connections and listening ports.", "Displays addresses and port numbers in …