Errors in Deployment

This shows that there is some thing running on port 8080.which operating system are you using? incase its windows use the these commands to find and kill a task at port 8080

  1. netstat -ano | findstr 8080

2 ) taskkill /F /PID (add the id of the running procees here) for example taskkill /F /PID 5312, After restart the whole process!

1 Like