windows stop process on a specific port code example
Example 1: kill process on port windows
netstat -ano | findstr "PORT_NUMBER"
taskkill /PID PORT_NUMBER /f
Example 2: cli kill what is listening on port
kill $(lsof -t -i:53) #Kill the process listening on port 53