约 51 个结果
在新选项卡中打开链接
  1. How to close TCP and UDP ports via windows command line

    2011年12月31日 · 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 …

  2. Windows Kill Process By PORT Number - Stack Overflow

    2019年3月23日 · 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 …

  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. 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 …

  5. 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 …

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

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

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

    2017年5月1日 · 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 …

  8. How do I free my port 80 on localhost Windows? - Stack Overflow

    2009年4月25日 · I installed XAMPP 1.6.8 and for some reason it didn't work. Later realized port 80 is not free or not listening. How can I release it or make it free? Thanks a lot!

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

    2025年2月23日 · 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 …

  10. c# - Proper way to stop TcpListener - Stack Overflow

    Now, when the program shuts down I want it to stop listening for clients. Setting listen to false will prevent it from taking on more connections, but since AcceptTcpClient is a blocking call, it will at …