About 52 results
Open links in new tab
  1. How do I remove the process currently using a port on localhost in ...

    4 In case you want to do it using Python: check Is it possible in python to kill process that is listening on specific port, for example 8080? The answer from Smunk works nicely. I repeat his code here: from …

  2. 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. But the …

  3. How can I kill a process running on particular port in Linux?

    1538 To list any process listening to the port 8080: lsof -i:8080 To kill any process listening to the port 8080: kill $(lsof -t -i:8080) or more violently: kill -9 $(lsof -t -i:8080) (-9 corresponds to the SIGKILL - …

  4. How do I find out which process is listening on a TCP or UDP port on ...

    cmd netstat -a -b (Add -n to stop it trying to resolve hostnames, which will make it a lot faster.) Note Dane's recommendation for TCPView. It looks very useful! -a Displays all connections and listening …

  5. Windows Kill Process By PORT Number - Stack Overflow

    Mar 23, 2019 · Verify the connector's configuration, identify and stop any process that's listening on port 8080, or configure this application to listen on another port. There are some similar questions but …

  6. Port 80 is being used by SYSTEM (PID 4), what is that?

    35 It sounds like IIS is listening to port 80 for HTTP requests. Try stopping IIS by going into Control Panel/Administrative Tools/Internet Information Services, right-clicking on Default Web Site, and click …

  7. How to stop listening for signal changes, but retain the last fetched ...

    Feb 23, 2025 · The Resource API should stop listening for signal changes, but retain the last fetched value When I stop the resource listener, it emptied the value inside the resource.value(), but I want to …

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

    Jun 1, 2011 · In Windows what can look for port 8080 and try to kill the process it is using through a .BAT file?

  9. How do i control when to stop the audio input? - Stack Overflow

    May 1, 2017 · This piece of code when executed starts listening for the audio input from the user. If the user does not speak for a while it automatically stops. I want to know how can we get to know that it …

  10. c# - TcpListener: how to stop listening while awaiting ...

    Oct 7, 2013 · I don't know how to properly close a TcpListener while an async method await for incoming connections. I found this code on SO, here the code : public class Server { private TcpListener _Serve...