Problem: If next error appears and you are using Java in Windows:
Caused by: java.net.BindException: Address already in use: bindSolution: open CMD and launch next command:
netstat -ano | findstr :<PORT_NUMBER>Finally using last column values (PID column), you have to launch next command (one time per row):
taskkill /PID <PID_NUMBER> /FFor more interesting tutorials & guides just check them HERE.
