how to kill process running on same port code example
Example 1: cmd kill process on port
## check and kill used "ports"
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
Example 2: kill a process at a port
fuser -k 8080/tcp
## check and kill used "ports"
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
fuser -k 8080/tcp