how to kill a server running on a port code example
Example 1: kill process on port windows
netstat -ano | findstr "PORT_NUMBER"
taskkill /PID PORT_NUMBER /f
Example 2: kill port
lsof -i:8080
Example 3: kill process running on port in windows
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
Example 4: kill service by port number on windows
taskkill /F /PID PORT_NUMBER
Example 5: kill port
sudo kill -9 $(sudo lsof -t -i:8080)
Example 6: stop a process running on a port
fuser 8080/tcp
fuser -k 8080/tcp