kill port number in windows code example
Example 1: windows kill port
netstat -ano | findstr :3001
taskkill /PID <yourid> /F
Example 2: windows kill process on port
netstat -ano | findstr :<PORT>
taskkill /PID <PID> /F
Example 3: kill service by port number on windows
taskkill /F /PID PORT_NUMBER
Example 4: cli kill what is listening on port
kill $(lsof -t -i:53) #Kill the process listening on port 53