cmd how to stop running port 8080 code example
Example 1: kill process on port windows
netstat -ano | findstr "PORT_NUMBER"
taskkill /PID PORT_NUMBER /f
Example 2: how to stop port 8080
netstat -ano | findstr <Port Number>
Example 3: how to stop port 8080
taskkill /F /PID <Process Id>