Wildfly server is not running

Asked

Viewed 336 times

-1

I have a problem with my Wildfly 15 server and I am not able to run it or upload any application. Is it a problem with the new version of the server? Below is the error:

Failed to start service org.wildfly.management.http.extensible: org.jboss.msc.service.StartException in service org.wildfly.management.http.extensible: java.net.BindException: Address already in use: bind localhost/127.0.0.1:9990
    at org.jboss.as.server.mgmt.UndertowHttpManagementService.start(UndertowHttpManagementService.java:349)
    at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1736)
    at org.jboss.msc.service.ServiceControllerImpl$StartTask.execute(ServiceControllerImpl.java:1698)
    at org.jboss.msc.service.ServiceControllerImpl$ControllerTask.run(ServiceControllerImpl.java:1556)
    at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
    at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985)
    at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487)
    at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1378)
    at java.lang.Thread.run(Thread.java:748)

09:05:49,320 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-8) WFLYUT0006: Undertow HTTPS listener https listening on 127.0.0.1:8443
09:05:52,446 INFO  [org.jboss.ws.common.management] (MSC service thread 1-8) JBWS022052: Starting JBossWS 5.2.3.Final (Apache CXF 3.2.5.jbossorg-1) 
09:05:52,466 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([
    ("core-service" => "management"),
    ("management-interface" => "http-interface")
]) - failure description: {"WFLYCTL0080: Failed services" => {"org.wildfly.management.http.extensible" => "java.net.BindException: Address already in use: bind localhost/127.0.0.1:9990"}}
09:05:52,473 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([
    ("core-service" => "management"),
    ("management-interface" => "http-interface")
]) - failure description: {"WFLYCTL0080: Failed services" => {"org.wildfly.management.http.extensible" => "java.net.BindException: Address already in use: bind localhost/127.0.0.1:9990"}}
  • This is a question about programming?

  • in vdd I am having trouble on my server, it is not getting started

1 answer

1

In the error you are saying that you already have a program using this address/port "localhost/127.0.0.1:9990".

Probably already have a wildifly startado, finish all wildifly processes and try startar again.

In the error you are saying that you already have a program using this address/port "localhost/127.0.0.1:9990".

Probably already have a wildifly startado, finish all wildifly processes and try startar again.

How to kill the process: If you are using windows open CMD and type netstat -a -n -o will be listed the ports that are being used, find port 9990 and copy the PID number and type Kill [PID number]. Once this is done you will kill the process that is using this port and you can start the application again.

  • as I do to finalize all the Windows of the wildfly server, you could talk to me pfv. I’m still getting started in this world of programming

  • which server is using

  • I’m using wildfly, but tbm there are two servers in my eclipse. Tomcat and wildfly, I think this may be tbm that is going bad

  • a test you can do is finish the javaw.exe process in the windows process manager, but it may close your eclipse

  • how do I do that?

  • I updated the response

  • Bro I found another command, because the I did not work and I put this one here "taskkill -im 4192" and gave this error here in cmd and it didn’t work: ERROR: the process with PID 4192 could not be finished. Reason: Access denied. WHAT I DO LITTLE BROTHER??

Show 2 more comments

Browser other questions tagged

You are not signed in. Login or sign up in order to post.