About 51 results
Open links in new tab
  1. How can I kill a process running on particular port in Linux?

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

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

  4. 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 hostnames, …

  5. How do I programmatically shut down an instance of ExpressJS?

    I'm trying to figure out how to shut down an instance of Express. Basically, I want the inverse of the .listen(port) call - how do I get an Express server to STOP listening, release the port, and

  6. Stop all instances of Node.js server - Stack Overflow

    Stop all instances of Node.js server Asked 13 years, 2 months ago Modified 2 years, 4 months ago Viewed 793k times

  7. c# - Proper way to stop listening on a Socket - Stack Overflow

    Dec 19, 2016 · I have a server that listens for a connection on a socket: public class Server { private Socket _serverSocket; public Server() { _serverSocket = new Socket(AddressFamily.

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

  9. How to make a button stop listening after being clicked

    Apr 1, 2020 · How to make a button stop listening after being clicked Asked 6 years ago Modified 6 years ago Viewed 248 times

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