1
I am learning EJB, and I received a project that uses EJB, only that I decided to use Wildfly. when I upload application presents an error.
service org.wildfly.request-controller.control-point."livraria.war".undertow (missing) dependents: [service jboss.undertow.deployment.default-server.default-host./livraria.UndertowDeploymentInfoService]
WFLYCTL0186: Services which failed to start: service jboss.serverManagement.controller.management.http: org.jboss.msc.service.StartException in service jboss.serverManagement.controller.management.http: java.net.BindException: Address already in use: bind localhost/127.0.0.1:9990
20:15:21,623 INFO [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found livraria.war in deployment direc
When trying to add my server I am with that warning, what I do from there I am with that error.
Address already in use: bind localhost/127.0.0.1:9990 Checks if there is no wildfly process running or if the port is in use by another application
– adelmo00
um.... what would you suggest so you can solve this problem.
– user67378
restarts the computer, if persist checks if there is any other application using port 9990
– adelmo00
when running, it was the same. I see that when I put localhost:8080 opens the wildfly page
– user67378
The 9990 port of wildfly is for administration. You need to check if there is another application that is using the port.
– adelmo00
I put a print there, I even deleted my container that was the Tomcat and put only this Wildfly more nothing.
– user67378