how to kill process by command 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 a process in linux
kill -KILL PIDnumber ... for example, kill -KILL 12345