$ 0 0 Many a times during debugging, you find that your port is already used. You can find at this point where it is used and kill the process.Step 1: Find all processes using port$ netstat -vanp tcp | grep 8080Step 2: Kill the taskeg: $ sudo kill -9 73804Refer screen shot below:cheers :)