terminal kill port process 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 mac terminal
sudo lsof -i <Port>
sudo kill -9 <PID>
## check and kill used "ports"
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
sudo lsof -i <Port>
sudo kill -9 <PID>