Server error

0
Hi, I am getting server error while running any app in any version. Please help me out. I am unable to run any applic
asked
1 answers
0

There is another process running on your localhost port 8080. Go to App → Settings, double-click on the configuration that your app uses and set the Runtime port to 8081 and Admin port to 8091.

If you have no idea who is keeping 8080 occupied then open a commandprompt and do this to find the process and then kill it:

netstat -ano |findstr 8080
taskkill /F -PID <YourProcessNumber>

 

answered