killing process on 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 port
kill -9 $(sudo lsof -t -i:8080)
## check and kill used "ports"
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
kill -9 $(sudo lsof -t -i:8080)