how to kill port 8080 using cmd code example
Example 1: windows stop process running on port 8080
netstat -ano | findstr
taskkill /F /PID
Example 2: kill process on port windows
netstat -ano | findstr "PORT_NUMBER"
taskkill /PID PORT_NUMBER /f