Can not run the app

0
AnHi all, I have this problem when I try to run the app.  it shows me this message “ An known error occurred while starting the server” .
asked
1 answers
3

You have another application, probably another Mendix-app, already using port 8080. Stop that one, then restart this one.

 

If you can not find the other application, and thus not stop it, then open a command prompt and do

netstat -ano | findstr 8080

this will give you the (short) list of processes and process ids. To kill the process:

taskkill  /F  /PID  <Process Id>

 

answered