-
1. Re: jconsole not found
jamezp Dec 7, 2017 7:31 PM (in response to jdelgadot)1 of 1 people found this helpfulCould you try 1.2.1.Final? That version should work with Java 9.
--
James R. Perkins
-
2. Re: jconsole not found
jdelgadot Dec 8, 2017 7:30 AM (in response to jamezp)Now with 1.2.1.Final another error
12:26:24,508 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-4) MSC000001: Failed to start service org.wildfly.undertow.listener.default: org.jboss.msc.service.StartException in service org.wildfly.undertow.listener.default: Address already in use /127.0.0.1:8080
at org.wildfly.extension.undertow.ListenerService.start(ListenerService.java:179)
at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:2032)
at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1955)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
-
3. Re: jconsole not found
jamezp Dec 11, 2017 11:55 AM (in response to jdelgadot)It looks like you have something else listening on port 8080. You'd have to figure what it is by using something like netstat.
--
James R. Perkins
-
4. Re: jconsole not found
jdelgadot Dec 12, 2017 2:44 PM (in response to jamezp)It is not that.
If i do mvn wildly:run the first time i hate not any error but the second i have address already in use.
If i shutdown the server and then i do mvn run:install i have again any error.
What does it happen?
It seems that wildly:run start always a server instance???
-
5. Re: jconsole not found
jamezp Dec 12, 2017 3:22 PM (in response to jdelgadot)Yes the run goal will always attempt to start a server. It's meant to be used as a quick way to run your application. Once you're done it's required to CTRL+C to kill the process. If you execute the run goal twice it will attempt to start two different servers and deploy your application.
--
James R. Perkins
-
6. Re: jconsole not found
nickleus Sep 13, 2018 9:52 AM (in response to jamezp)Thx James, I had the same problem, so i just changed the pom.xml
from:
<version.wildfly.maven.plugin>1.0.2.Final</version.wildfly.maven.plugin>
to:
<version.wildfly.maven.plugin>1.2.1.Final</version.wildfly.maven.plugin>
then reran the mvn call:
mvn clean install wildfly:deploy
and it worked--the error was gone