some useful command

@Shoaib

3/3. For windows

To track down the process running on specific port:

netstat -ano | findstr :8080 # (the port number)

This should give you the process id to kill. Then you run:

taskkill /F /PID 12017 # (or whatever the process ID is)