stop service running on port code example
Example 1: kill process on port windows
netstat -ano | findstr "PORT_NUMBER"
taskkill /PID PORT_NUMBER /f
Example 2: kill port
kill -9 $(lsof -t -i:8080)
netstat -ano | findstr "PORT_NUMBER"
taskkill /PID PORT_NUMBER /f
kill -9 $(lsof -t -i:8080)