how to kill process windows code example
Example 1: cmd kill process
## check and kill used "ports"
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
Example 2: how to kill process
sudo kill <PID>
## check and kill used "ports"
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
sudo kill <PID>