1 2 Previous Next 19 Replies Latest reply on Nov 22, 2017 10:43 AM by martinrixham

    Management console from fedora repo

    martinrixham

      I'm having trouble with wildfly installed from the fedora repo.

       

      I'm running fedora 27 and I installed the wildfly package from the repo. I started the wildfly service and wildfly 10 runs on port 8080. I added a management user and opened the console on port 9990, but it just gives 404.

       

      Is there an extra step to run the management console?

       

      Thanks for any help.

        • 1. Re: Management console from fedora repo
          ptyagi_redhat.com

          On which ip address did you run JBoss server? Is it running on localhost or any ip address? What is the url you used to access the admin console? 

          • 2. Re: Management console from fedora repo
            martinrixham

            I was just trying on localhost so far. I think the amin console should be on localhost:9990

            • 3. Re: Management console from fedora repo
              claudio4j

              Can you paste the result of the following command ?

              netstat -punta|grep 9990|grep LISTEN

              • 4. Re: Management console from fedora repo
                martinrixham

                [martin@localhost ~]$ netstat -punta|grep 9990|grep LISTEN

                (Not all processes could be identified, non-owned process info

                will not be shown, you would have to be root to see it all.)

                tcp        0      0 127.0.0.1:9990          0.0.0.0:*               LISTEN      -                  

                [martin@localhost ~]$

                • 5. Re: Management console from fedora repo
                  jaikiran

                  The fact that it's returning 404 is a sign that there's some server which is responding to the request. Are you sure there's no other server that's listening on that port? What exact URL are you using?

                  • 6. Re: Management console from fedora repo
                    martinrixham

                    Yes I'm sure there's no other server on that port. I'm just requesting localhost:9990

                    • 7. Re: Management console from fedora repo
                      jaikiran

                      How exactly did you start the WildFly server (what command)? Also, can you please post the output of the following command:

                       

                      curl -vL localhost:9990

                      • 8. Re: Management console from fedora repo
                        martinrixham

                        [martin@localhost ~]$ curl -v localhost:9990

                        * Rebuilt URL to: localhost:9990/

                        *   Trying ::1...

                        * TCP_NODELAY set

                        * connect to ::1 port 9990 failed: Connection refused

                        *   Trying 127.0.0.1...

                        * TCP_NODELAY set

                        * Connected to localhost (127.0.0.1) port 9990 (#0)

                        > GET / HTTP/1.1

                        > Host: localhost:9990

                        > User-Agent: curl/7.55.1

                        > Accept: */*

                        >

                        < HTTP/1.1 301 Moved Permanently

                        < Connection: keep-alive

                        < Location: http://localhost:9990/console/index.html

                        < Content-Length: 0

                        < Date: Fri, 17 Nov 2017 04:04:51 GMT

                        <

                        * Connection #0 to host localhost left intact

                        [martin@localhost ~]$ curl -v localhost:9990/console/index.html

                        *   Trying ::1...

                        * TCP_NODELAY set

                        * connect to ::1 port 9990 failed: Connection refused

                        *   Trying 127.0.0.1...

                        * TCP_NODELAY set

                        * Connected to localhost (127.0.0.1) port 9990 (#0)

                        > GET /console/index.html HTTP/1.1

                        > Host: localhost:9990

                        > User-Agent: curl/7.55.1

                        > Accept: */*

                        >

                        < HTTP/1.1 404 Not Found

                        < Connection: keep-alive

                        < X-Frame-Options: SAMEORIGIN

                        < Content-Length: 74

                        < Content-Type: text/html

                        < Date: Fri, 17 Nov 2017 04:05:14 GMT

                        <

                        * Connection #0 to host localhost left intact

                        <html><head><title>Error</title></head><body>404 - Not Found</body></html>[martin@localhost ~]$

                         

                         

                         

                        I started the server with 'service wildfly start' then gave the root password when prompted

                        • 9. Re: Management console from fedora repo
                          jaikiran

                          > GET /console/index.html HTTP/1.1

                          > Host: localhost:9990

                          > User-Agent: curl/7.55.1

                          > Accept: */*

                          >

                          < HTTP/1.1 404 Not Found

                          That's odd.

                           

                          Martin Rixham wrote:

                           

                           

                           

                          I started the server with 'service wildfly start' then gave the root password when prompted

                          Can you stop the service and start the server from the command line as follows and see if that works:

                           

                          cd <wildfly-install-location>/bin/

                          ./standalone.sh

                           

                          Also attach the server.log when you start it this way.

                           

                          I don't see a reason why the console isn't being deployed and I haven't tried using the WildFly (OS level) "service"/package to see what it does.

                           

                          I vaguely remember goldmann used to manage the Fedora package for WildFly, but I don't know if that's still the case. Maybe he knows more about the state of that package in Fedora 27.

                          • 10. Re: Management console from fedora repo
                            martinrixham

                            [martin@localhost ~]$ /usr/share/wildfly/bin/standalone.sh

                            =========================================================================

                             

                              JBoss Bootstrap Environment

                             

                              JBOSS_HOME: /usr/share/wildfly

                             

                              JAVA: java

                             

                              JAVA_OPTS:  -server -Xms64m -Xmx512m -XX:MetaspaceSize=96M -XX:MaxMetaspaceSize=256m -Djava.net.preferIPv4Stack=true -Djboss.modules.system.pkgs=org.jboss.byteman -Djava.awt.headless=true

                             

                            =========================================================================

                             

                            Unable to read the logging configuration from 'file:/usr/share/wildfly/standalone/configuration/logging.properties' (java.io.FileNotFoundException: /usr/share/wildfly/standalone/configuration/logging.properties (Permission denied))

                            java.lang.IllegalStateException: WFLYSRV0128: Could not create log directory: /usr/share/wildfly/standalone/log

                                at org.jboss.as.server.ServerEnvironment.<init>(ServerEnvironment.java:505)

                                at org.jboss.as.server.Main.determineEnvironment(Main.java:297)

                                at org.jboss.as.server.Main.main(Main.java:94)

                                at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

                                at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

                                at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

                                at java.lang.reflect.Method.invoke(Method.java:498)

                                at org.jboss.modules.Module.run(Module.java:330)

                                at org.jboss.modules.Main.main(Main.java:505)

                            [martin@localhost ~]$ sudo /usr/share/wildfly/bin/standalone.sh

                            =========================================================================

                             

                              JBoss Bootstrap Environment

                             

                              JBOSS_HOME: /usr/share/wildfly

                             

                              JAVA: java

                             

                              JAVA_OPTS:  -server -Xms64m -Xmx512m -XX:MetaspaceSize=96M -XX:MaxMetaspaceSize=256m -Djava.net.preferIPv4Stack=true -Djboss.modules.system.pkgs=org.jboss.byteman -Djava.awt.headless=true

                             

                            =========================================================================

                             

                            10:22:38,702 INFO  [org.jboss.modules] (main) JBoss Modules version 1.5.2.Final

                            10:22:38,869 INFO  [org.jboss.msc] (main) JBoss MSC version 1.2.6.Final

                            10:22:38,939 INFO  [org.jboss.as] (MSC service thread 1-7) WFLYSRV0049: WildFly Full 10.1.0.Final (WildFly Core 2.2.0.Final) starting

                            10:22:39,992 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0039: Creating http management service using socket-binding (management-http)

                            10:22:40,008 INFO  [org.xnio] (MSC service thread 1-7) XNIO version 3.4.0.Final

                            10:22:40,018 INFO  [org.xnio.nio] (MSC service thread 1-7) XNIO NIO Implementation Version 3.4.0.Final

                            10:22:40,079 INFO  [org.jboss.remoting] (MSC service thread 1-7) JBoss Remoting version 4.0.21.Final

                            10:22:40,118 INFO  [org.wildfly.extension.io] (ServerService Thread Pool -- 37) WFLYIO001: Worker 'default' has auto-configured to 8 core threads with 64 task threads based on your 4 available processors

                            10:22:40,125 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 38) WFLYCLINF0001: Activating Infinispan subsystem.

                            10:22:40,140 INFO  [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 33) WFLYJCA0004: Deploying JDBC-compliant driver class org.h2.Driver (version 1.4)

                            10:22:40,196 INFO  [org.jboss.as.jsf] (ServerService Thread Pool -- 44) WFLYJSF0007: Activated the following JSF Implementations: [main]

                            10:22:40,208 WARN  [org.jboss.as.txn] (ServerService Thread Pool -- 54) WFLYTX0013: Node identifier property is set to the default value. Please make sure it is unique.

                            10:22:40,212 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 46) WFLYNAM0001: Activating Naming Subsystem

                            10:22:40,234 INFO  [org.jboss.as.webservices] (ServerService Thread Pool -- 56) WFLYWS0002: Activating WebServices Extension

                            10:22:40,264 INFO  [org.jboss.as.security] (ServerService Thread Pool -- 53) WFLYSEC0002: Activating Security Subsystem

                            10:22:40,259 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-6) WFLYJCA0018: Started Driver service with driver-name = h2

                            10:22:40,251 INFO  [org.jboss.as.connector] (MSC service thread 1-5) WFLYJCA0009: Starting JCA Subsystem (WildFly/IronJacamar 1.3.4.Final)

                            10:22:40,272 INFO  [org.jboss.as.security] (MSC service thread 1-6) WFLYSEC0001: Current PicketBox version=4.9.6.Final

                            10:22:40,359 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-6) WFLYUT0003: Undertow 1.4.0.Final starting

                            10:22:40,422 INFO  [org.jboss.as.naming] (MSC service thread 1-6) WFLYNAM0003: Starting Naming Service

                            10:22:40,423 INFO  [org.jboss.as.mail.extension] (MSC service thread 1-8) WFLYMAIL0001: Bound mail session [java:jboss/mail/Default]

                            10:22:40,539 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 55) WFLYUT0014: Creating file handler for path '/usr/share/wildfly/welcome-content' with options [directory-listing: 'false', follow-symlink: 'false', case-sensitive: 'true', safe-symlink-paths: '[]']

                            10:22:40,570 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0012: Started server default-server.

                            10:22:40,575 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-3) WFLYUT0018: Host default-host starting

                            10:22:40,592 INFO  [org.jboss.as.ejb3] (MSC service thread 1-4) WFLYEJB0482: Strict pool mdb-strict-max-pool is using a max instance size of 16 (per class), which is derived from the number of CPUs on this host.

                            10:22:40,592 INFO  [org.jboss.as.ejb3] (MSC service thread 1-2) WFLYEJB0481: Strict pool slsb-strict-max-pool is using a max instance size of 64 (per class), which is derived from thread worker pool sizing.

                            10:22:40,685 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0006: Undertow HTTP listener default listening on 127.0.0.1:8080

                            10:22:41,023 INFO  [org.jboss.as.server.deployment.scanner] (MSC service thread 1-5) WFLYDS0013: Started FileSystemDeploymentService for directory /usr/share/wildfly/standalone/deployments

                            10:22:41,023 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-5) WFLYJCA0001: Bound data source [java:jboss/datasources/ExampleDS]

                            10:22:41,134 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-8) MSC000001: Failed to start service jboss.infinispan.hibernate: org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1904)

                                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)

                            Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                at org.infinispan.factories.components.ComponentMetadataRepo.initialize(ComponentMetadataRepo.java:119)

                                at org.infinispan.factories.GlobalComponentRegistry.<init>(GlobalComponentRegistry.java:106)

                                at org.infinispan.manager.DefaultCacheManager.<init>(DefaultCacheManager.java:225)

                                at org.jboss.as.clustering.infinispan.subsystem.CacheContainerBuilder.start(CacheContainerBuilder.java:108)

                                at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1948)

                                at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1881)

                                ... 3 more

                            Caused by: java.lang.NullPointerException

                                at org.infinispan.factories.components.ComponentMetadataRepo.readMetadata(ComponentMetadataRepo.java:33)

                                at org.infinispan.factories.components.ComponentMetadataRepo.initialize(ComponentMetadataRepo.java:117)

                                ... 8 more

                             

                            10:22:41,247 INFO  [org.infinispan.factories.GlobalComponentRegistry] (MSC service thread 1-1) ISPN000128: Infinispan version: Infinispan 'Chakra' 8.2.4.Final

                            10:22:41,286 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 58) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

                            10:22:41,288 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 58) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

                            10:22:41,290 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 59) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

                            10:22:41,292 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 61) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

                            10:22:41,295 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 61) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

                            10:22:41,294 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 59) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

                            10:22:41,318 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-4) WFLYUT0006: Undertow HTTPS listener https listening on 127.0.0.1:8443

                            10:22:41,399 INFO  [org.jboss.ws.common.management] (MSC service thread 1-3) JBWS022052: Starting JBossWS 5.1.5.Final (Apache CXF 3.1.6)

                            10:22:41,414 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([

                                ("subsystem" => "infinispan"),

                                ("cache-container" => "hibernate")

                            ]) - failure description: {

                                "WFLYCTL0080: Failed services" => {"jboss.infinispan.hibernate" => "org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                Caused by: java.lang.NullPointerException"},

                                "WFLYCTL0412: Required services that are not installed:" => ["jboss.infinispan.hibernate"],

                                "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined

                            }

                            10:22:41,415 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([

                                ("subsystem" => "infinispan"),

                                ("cache-container" => "hibernate"),

                                ("thread-pool" => "async-operations")

                            ]) - failure description: {

                                "WFLYCTL0080: Failed services" => {"jboss.infinispan.hibernate" => "org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                Caused by: java.lang.NullPointerException"},

                                "WFLYCTL0412: Required services that are not installed:" => ["jboss.infinispan.hibernate"],

                                "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined

                            }

                            10:22:41,416 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([

                                ("subsystem" => "infinispan"),

                                ("cache-container" => "hibernate"),

                                ("thread-pool" => "expiration")

                            ]) - failure description: {

                                "WFLYCTL0080: Failed services" => {"jboss.infinispan.hibernate" => "org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                Caused by: java.lang.NullPointerException"},

                                "WFLYCTL0412: Required services that are not installed:" => ["jboss.infinispan.hibernate"],

                                "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined

                            }

                            10:22:41,417 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([

                                ("subsystem" => "infinispan"),

                                ("cache-container" => "hibernate"),

                                ("thread-pool" => "listener")

                            ]) - failure description: {

                                "WFLYCTL0080: Failed services" => {"jboss.infinispan.hibernate" => "org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                Caused by: java.lang.NullPointerException"},

                                "WFLYCTL0412: Required services that are not installed:" => ["jboss.infinispan.hibernate"],

                                "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined

                            }

                            10:22:41,417 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([

                                ("subsystem" => "infinispan"),

                                ("cache-container" => "hibernate"),

                                ("thread-pool" => "persistence")

                            ]) - failure description: {

                                "WFLYCTL0080: Failed services" => {"jboss.infinispan.hibernate" => "org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                Caused by: java.lang.NullPointerException"},

                                "WFLYCTL0412: Required services that are not installed:" => ["jboss.infinispan.hibernate"],

                                "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined

                            }

                            10:22:41,418 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([

                                ("subsystem" => "infinispan"),

                                ("cache-container" => "hibernate"),

                                ("thread-pool" => "remote-command")

                            ]) - failure description: {

                                "WFLYCTL0080: Failed services" => {"jboss.infinispan.hibernate" => "org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                Caused by: java.lang.NullPointerException"},

                                "WFLYCTL0412: Required services that are not installed:" => ["jboss.infinispan.hibernate"],

                                "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined

                            }

                            10:22:41,418 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([

                                ("subsystem" => "infinispan"),

                                ("cache-container" => "hibernate"),

                                ("thread-pool" => "state-transfer")

                            ]) - failure description: {

                                "WFLYCTL0080: Failed services" => {"jboss.infinispan.hibernate" => "org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                Caused by: java.lang.NullPointerException"},

                                "WFLYCTL0412: Required services that are not installed:" => ["jboss.infinispan.hibernate"],

                                "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined

                            }

                            10:22:41,419 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([

                                ("subsystem" => "infinispan"),

                                ("cache-container" => "hibernate"),

                                ("thread-pool" => "transport")

                            ]) - failure description: {

                                "WFLYCTL0080: Failed services" => {"jboss.infinispan.hibernate" => "org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                Caused by: java.lang.NullPointerException"},

                                "WFLYCTL0412: Required services that are not installed:" => ["jboss.infinispan.hibernate"],

                                "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined

                            }

                            10:22:41,419 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([

                                ("subsystem" => "infinispan"),

                                ("cache-container" => "hibernate"),

                                ("transport" => "none")

                            ]) - failure description: {

                                "WFLYCTL0080: Failed services" => {"jboss.infinispan.hibernate" => "org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                Caused by: java.lang.NullPointerException"},

                                "WFLYCTL0412: Required services that are not installed:" => ["jboss.infinispan.hibernate"],

                                "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined

                            }

                            10:22:41,442 INFO  [org.jboss.as.controller] (Controller Boot Thread) WFLYCTL0183: Service status report

                            WFLYCTL0186:   Services which failed to start:      service jboss.infinispan.hibernate: org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                             

                            10:22:41,539 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:9990/management

                            10:22:41,540 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://127.0.0.1:9990

                            10:22:41,540 ERROR [org.jboss.as] (Controller Boot Thread) WFLYSRV0026: WildFly Full 10.1.0.Final (WildFly Core 2.2.0.Final) started (with errors) in 3077ms - Started 326 of 577 services (1 services failed or missing dependencies, 393 services are lazy, passive or on-demand)

                             

                             

                            and the output from server.log:

                             

                             

                            2017-11-17 10:22:38,702 INFO  [org.jboss.modules] (main) JBoss Modules version 1.5.2.Final

                            2017-11-17 10:22:38,869 INFO  [org.jboss.msc] (main) JBoss MSC version 1.2.6.Final

                            2017-11-17 10:22:38,939 INFO  [org.jboss.as] (MSC service thread 1-7) WFLYSRV0049: WildFly Full 10.1.0.Final (WildFly Core 2.2.0.Final) starting

                            2017-11-17 10:22:38,941 DEBUG [org.jboss.as.config] (MSC service thread 1-7) Configured system properties:

                                [Standalone] =

                                awt.toolkit = sun.awt.X11.XToolkit

                                file.encoding = UTF-8

                                file.encoding.pkg = sun.io

                                file.separator = /

                                java.awt.graphicsenv = sun.awt.X11GraphicsEnvironment

                                java.awt.headless = true

                                java.awt.printerjob = sun.print.PSPrinterJob

                                java.class.path = /usr/share/wildfly/jboss-modules.jar

                                java.class.version = 52.0

                                java.endorsed.dirs = /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.151-1.b12.fc27.x86_64/jre/lib/endorsed

                                java.ext.dirs = /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.151-1.b12.fc27.x86_64/jre/lib/ext:/usr/java/packages/lib/ext

                                java.home = /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.151-1.b12.fc27.x86_64/jre

                                java.io.tmpdir = /tmp

                                java.library.path = /usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib

                                java.net.preferIPv4Stack = true

                                java.runtime.name = OpenJDK Runtime Environment

                                java.runtime.version = 1.8.0_151-b12

                                java.specification.name = Java Platform API Specification

                                java.specification.vendor = Oracle Corporation

                                java.specification.version = 1.8

                                java.util.logging.manager = org.jboss.logmanager.LogManager

                                java.vendor = Oracle Corporation

                                java.vendor.url = http://java.oracle.com/

                                java.vendor.url.bug = http://bugreport.sun.com/bugreport/

                                java.version = 1.8.0_151

                                java.vm.info = mixed mode

                                java.vm.name = OpenJDK 64-Bit Server VM

                                java.vm.specification.name = Java Virtual Machine Specification

                                java.vm.specification.vendor = Oracle Corporation

                                java.vm.specification.version = 1.8

                                java.vm.vendor = Oracle Corporation

                                java.vm.version = 25.151-b12

                                javax.management.builder.initial = org.jboss.as.jmx.PluggableMBeanServerBuilder

                                javax.xml.datatype.DatatypeFactory = __redirected.__DatatypeFactory

                                javax.xml.parsers.DocumentBuilderFactory = __redirected.__DocumentBuilderFactory

                                javax.xml.parsers.SAXParserFactory = __redirected.__SAXParserFactory

                                javax.xml.stream.XMLEventFactory = __redirected.__XMLEventFactory

                                javax.xml.stream.XMLInputFactory = __redirected.__XMLInputFactory

                                javax.xml.stream.XMLOutputFactory = __redirected.__XMLOutputFactory

                                javax.xml.transform.TransformerFactory = __redirected.__TransformerFactory

                                javax.xml.validation.SchemaFactory:http://www.w3.org/2001/XMLSchema = __redirected.__SchemaFactory

                                javax.xml.xpath.XPathFactory:http://java.sun.com/jaxp/xpath/dom = __redirected.__XPathFactory

                                jboss.home.dir = /usr/share/wildfly

                                jboss.host.name = localhost

                                jboss.modules.dir = /usr/share/wildfly/modules

                                jboss.modules.system.pkgs = org.jboss.byteman

                                jboss.node.name = localhost

                                jboss.qualified.host.name = localhost.localdomain

                                jboss.server.base.dir = /usr/share/wildfly/standalone

                                jboss.server.config.dir = /usr/share/wildfly/standalone/configuration

                                jboss.server.data.dir = /usr/share/wildfly/standalone/data

                                jboss.server.deploy.dir = /usr/share/wildfly/standalone/data/content

                                jboss.server.log.dir = /usr/share/wildfly/standalone/log

                                jboss.server.name = localhost

                                jboss.server.persist.config = true

                                jboss.server.temp.dir = /usr/share/wildfly/standalone/tmp

                                line.separator =

                             

                                logging.configuration = file:/usr/share/wildfly/standalone/configuration/logging.properties

                                module.path = /usr/share/wildfly/modules

                                org.jboss.boot.log.file = /usr/share/wildfly/standalone/log/server.log

                                org.jboss.resolver.warning = true

                                org.xml.sax.driver = __redirected.__XMLReaderFactory

                                os.arch = amd64

                                os.name = Linux

                                os.version = 4.13.12-300.fc27.x86_64

                                path.separator = :

                                sun.arch.data.model = 64

                                sun.boot.class.path = /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.151-1.b12.fc27.x86_64/jre/lib/resources.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.151-1.b12.fc27.x86_64/jre/lib/rt.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.151-1.b12.fc27.x86_64/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.151-1.b12.fc27.x86_64/jre/lib/jsse.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.151-1.b12.fc27.x86_64/jre/lib/jce.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.151-1.b12.fc27.x86_64/jre/lib/charsets.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.151-1.b12.fc27.x86_64/jre/lib/jfr.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.151-1.b12.fc27.x86_64/jre/classes

                                sun.boot.library.path = /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.151-1.b12.fc27.x86_64/jre/lib/amd64

                                sun.cpu.endian = little

                                sun.cpu.isalist =

                                sun.io.unicode.encoding = UnicodeLittle

                                sun.java.command = /usr/share/wildfly/jboss-modules.jar -mp /usr/share/wildfly/modules org.jboss.as.standalone -Djboss.home.dir=/usr/share/wildfly -Djboss.server.base.dir=/usr/share/wildfly/standalone

                                sun.java.launcher = SUN_STANDARD

                                sun.jnu.encoding = UTF-8

                                sun.management.compiler = HotSpot 64-Bit Tiered Compilers

                                sun.os.patch.level = unknown

                                user.country = GB

                                user.dir = /home/martin

                                user.home = /root

                                user.language = en

                                user.name = root

                                user.timezone = Asia/Kolkata

                            2017-11-17 10:22:38,941 DEBUG [org.jboss.as.config] (MSC service thread 1-7) VM Arguments: -D[Standalone] -Xms64m -Xmx512m -XX:MetaspaceSize=96M -XX:MaxMetaspaceSize=256m -Djava.net.preferIPv4Stack=true -Djboss.modules.system.pkgs=org.jboss.byteman -Djava.awt.headless=true -Dorg.jboss.boot.log.file=/usr/share/wildfly/standalone/log/server.log -Dlogging.configuration=file:/usr/share/wildfly/standalone/configuration/logging.properties

                            2017-11-17 10:22:39,992 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0039: Creating http management service using socket-binding (management-http)

                            2017-11-17 10:22:40,008 INFO  [org.xnio] (MSC service thread 1-7) XNIO version 3.4.0.Final

                            2017-11-17 10:22:40,018 INFO  [org.xnio.nio] (MSC service thread 1-7) XNIO NIO Implementation Version 3.4.0.Final

                            2017-11-17 10:22:40,079 INFO  [org.jboss.remoting] (MSC service thread 1-7) JBoss Remoting version 4.0.21.Final

                            2017-11-17 10:22:40,118 INFO  [org.wildfly.extension.io] (ServerService Thread Pool -- 37) WFLYIO001: Worker 'default' has auto-configured to 8 core threads with 64 task threads based on your 4 available processors

                            2017-11-17 10:22:40,125 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 38) WFLYCLINF0001: Activating Infinispan subsystem.

                            2017-11-17 10:22:40,140 INFO  [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 33) WFLYJCA0004: Deploying JDBC-compliant driver class org.h2.Driver (version 1.4)

                            2017-11-17 10:22:40,196 INFO  [org.jboss.as.jsf] (ServerService Thread Pool -- 44) WFLYJSF0007: Activated the following JSF Implementations: [main]

                            2017-11-17 10:22:40,208 WARN  [org.jboss.as.txn] (ServerService Thread Pool -- 54) WFLYTX0013: Node identifier property is set to the default value. Please make sure it is unique.

                            2017-11-17 10:22:40,212 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 46) WFLYNAM0001: Activating Naming Subsystem

                            2017-11-17 10:22:40,234 INFO  [org.jboss.as.webservices] (ServerService Thread Pool -- 56) WFLYWS0002: Activating WebServices Extension

                            2017-11-17 10:22:40,251 INFO  [org.jboss.as.connector] (MSC service thread 1-5) WFLYJCA0009: Starting JCA Subsystem (WildFly/IronJacamar 1.3.4.Final)

                            2017-11-17 10:22:40,259 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-6) WFLYJCA0018: Started Driver service with driver-name = h2

                            2017-11-17 10:22:40,264 INFO  [org.jboss.as.security] (ServerService Thread Pool -- 53) WFLYSEC0002: Activating Security Subsystem

                            2017-11-17 10:22:40,272 INFO  [org.jboss.as.security] (MSC service thread 1-6) WFLYSEC0001: Current PicketBox version=4.9.6.Final

                            2017-11-17 10:22:40,359 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-6) WFLYUT0003: Undertow 1.4.0.Final starting

                            2017-11-17 10:22:40,422 INFO  [org.jboss.as.naming] (MSC service thread 1-6) WFLYNAM0003: Starting Naming Service

                            2017-11-17 10:22:40,423 INFO  [org.jboss.as.mail.extension] (MSC service thread 1-8) WFLYMAIL0001: Bound mail session [java:jboss/mail/Default]

                            2017-11-17 10:22:40,539 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 55) WFLYUT0014: Creating file handler for path '/usr/share/wildfly/welcome-content' with options [directory-listing: 'false', follow-symlink: 'false', case-sensitive: 'true', safe-symlink-paths: '[]']

                            2017-11-17 10:22:40,570 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0012: Started server default-server.

                            2017-11-17 10:22:40,575 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-3) WFLYUT0018: Host default-host starting

                            2017-11-17 10:22:40,592 INFO  [org.jboss.as.ejb3] (MSC service thread 1-4) WFLYEJB0482: Strict pool mdb-strict-max-pool is using a max instance size of 16 (per class), which is derived from the number of CPUs on this host.

                            2017-11-17 10:22:40,592 INFO  [org.jboss.as.ejb3] (MSC service thread 1-2) WFLYEJB0481: Strict pool slsb-strict-max-pool is using a max instance size of 64 (per class), which is derived from thread worker pool sizing.

                            2017-11-17 10:22:40,685 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0006: Undertow HTTP listener default listening on 127.0.0.1:8080

                            2017-11-17 10:22:41,023 INFO  [org.jboss.as.server.deployment.scanner] (MSC service thread 1-5) WFLYDS0013: Started FileSystemDeploymentService for directory /usr/share/wildfly/standalone/deployments

                            2017-11-17 10:22:41,023 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-5) WFLYJCA0001: Bound data source [java:jboss/datasources/ExampleDS]

                            2017-11-17 10:22:41,134 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-8) MSC000001: Failed to start service jboss.infinispan.hibernate: org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1904)

                                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)

                            Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                at org.infinispan.factories.components.ComponentMetadataRepo.initialize(ComponentMetadataRepo.java:119)

                                at org.infinispan.factories.GlobalComponentRegistry.<init>(GlobalComponentRegistry.java:106)

                                at org.infinispan.manager.DefaultCacheManager.<init>(DefaultCacheManager.java:225)

                                at org.jboss.as.clustering.infinispan.subsystem.CacheContainerBuilder.start(CacheContainerBuilder.java:108)

                                at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1948)

                                at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1881)

                                ... 3 more

                            Caused by: java.lang.NullPointerException

                                at org.infinispan.factories.components.ComponentMetadataRepo.readMetadata(ComponentMetadataRepo.java:33)

                                at org.infinispan.factories.components.ComponentMetadataRepo.initialize(ComponentMetadataRepo.java:117)

                                ... 8 more

                             

                            2017-11-17 10:22:41,247 INFO  [org.infinispan.factories.GlobalComponentRegistry] (MSC service thread 1-1) ISPN000128: Infinispan version: Infinispan 'Chakra' 8.2.4.Final

                            2017-11-17 10:22:41,286 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 58) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

                            2017-11-17 10:22:41,288 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 58) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

                            2017-11-17 10:22:41,290 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 59) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

                            2017-11-17 10:22:41,292 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 61) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

                            2017-11-17 10:22:41,295 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 61) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

                            2017-11-17 10:22:41,294 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 59) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

                            2017-11-17 10:22:41,318 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-4) WFLYUT0006: Undertow HTTPS listener https listening on 127.0.0.1:8443

                            2017-11-17 10:22:41,399 INFO  [org.jboss.ws.common.management] (MSC service thread 1-3) JBWS022052: Starting JBossWS 5.1.5.Final (Apache CXF 3.1.6)

                            2017-11-17 10:22:41,414 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([

                                ("subsystem" => "infinispan"),

                                ("cache-container" => "hibernate")

                            ]) - failure description: {

                                "WFLYCTL0080: Failed services" => {"jboss.infinispan.hibernate" => "org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                Caused by: java.lang.NullPointerException"},

                                "WFLYCTL0412: Required services that are not installed:" => ["jboss.infinispan.hibernate"],

                                "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined

                            }

                            2017-11-17 10:22:41,415 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([

                                ("subsystem" => "infinispan"),

                                ("cache-container" => "hibernate"),

                                ("thread-pool" => "async-operations")

                            ]) - failure description: {

                                "WFLYCTL0080: Failed services" => {"jboss.infinispan.hibernate" => "org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                Caused by: java.lang.NullPointerException"},

                                "WFLYCTL0412: Required services that are not installed:" => ["jboss.infinispan.hibernate"],

                                "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined

                            }

                            2017-11-17 10:22:41,416 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([

                                ("subsystem" => "infinispan"),

                                ("cache-container" => "hibernate"),

                                ("thread-pool" => "expiration")

                            ]) - failure description: {

                                "WFLYCTL0080: Failed services" => {"jboss.infinispan.hibernate" => "org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                Caused by: java.lang.NullPointerException"},

                                "WFLYCTL0412: Required services that are not installed:" => ["jboss.infinispan.hibernate"],

                                "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined

                            }

                            2017-11-17 10:22:41,417 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([

                                ("subsystem" => "infinispan"),

                                ("cache-container" => "hibernate"),

                                ("thread-pool" => "listener")

                            ]) - failure description: {

                                "WFLYCTL0080: Failed services" => {"jboss.infinispan.hibernate" => "org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                Caused by: java.lang.NullPointerException"},

                                "WFLYCTL0412: Required services that are not installed:" => ["jboss.infinispan.hibernate"],

                                "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined

                            }

                            2017-11-17 10:22:41,417 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([

                                ("subsystem" => "infinispan"),

                                ("cache-container" => "hibernate"),

                                ("thread-pool" => "persistence")

                            ]) - failure description: {

                                "WFLYCTL0080: Failed services" => {"jboss.infinispan.hibernate" => "org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                Caused by: java.lang.NullPointerException"},

                                "WFLYCTL0412: Required services that are not installed:" => ["jboss.infinispan.hibernate"],

                                "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined

                            }

                            2017-11-17 10:22:41,418 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([

                                ("subsystem" => "infinispan"),

                                ("cache-container" => "hibernate"),

                                ("thread-pool" => "remote-command")

                            ]) - failure description: {

                                "WFLYCTL0080: Failed services" => {"jboss.infinispan.hibernate" => "org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                Caused by: java.lang.NullPointerException"},

                                "WFLYCTL0412: Required services that are not installed:" => ["jboss.infinispan.hibernate"],

                                "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined

                            }

                            2017-11-17 10:22:41,418 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([

                                ("subsystem" => "infinispan"),

                                ("cache-container" => "hibernate"),

                                ("thread-pool" => "state-transfer")

                            ]) - failure description: {

                                "WFLYCTL0080: Failed services" => {"jboss.infinispan.hibernate" => "org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                Caused by: java.lang.NullPointerException"},

                                "WFLYCTL0412: Required services that are not installed:" => ["jboss.infinispan.hibernate"],

                                "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined

                            }

                            2017-11-17 10:22:41,419 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([

                                ("subsystem" => "infinispan"),

                                ("cache-container" => "hibernate"),

                                ("thread-pool" => "transport")

                            ]) - failure description: {

                                "WFLYCTL0080: Failed services" => {"jboss.infinispan.hibernate" => "org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                Caused by: java.lang.NullPointerException"},

                                "WFLYCTL0412: Required services that are not installed:" => ["jboss.infinispan.hibernate"],

                                "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined

                            }

                            2017-11-17 10:22:41,419 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([

                                ("subsystem" => "infinispan"),

                                ("cache-container" => "hibernate"),

                                ("transport" => "none")

                            ]) - failure description: {

                                "WFLYCTL0080: Failed services" => {"jboss.infinispan.hibernate" => "org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                                Caused by: org.infinispan.commons.CacheException: Unable to load component metadata in file hibernate-infinispan-component-metadata.dat

                                Caused by: java.lang.NullPointerException"},

                                "WFLYCTL0412: Required services that are not installed:" => ["jboss.infinispan.hibernate"],

                                "WFLYCTL0180: Services with missing/unavailable dependencies" => undefined

                            }

                            2017-11-17 10:22:41,442 INFO  [org.jboss.as.controller] (Controller Boot Thread) WFLYCTL0183: Service status report

                            WFLYCTL0186:   Services which failed to start:      service jboss.infinispan.hibernate: org.jboss.msc.service.StartException in service jboss.infinispan.hibernate: Failed to start service

                             

                            2017-11-17 10:22:41,539 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:9990/management

                            2017-11-17 10:22:41,540 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://127.0.0.1:9990

                            2017-11-17 10:22:41,540 ERROR [org.jboss.as] (Controller Boot Thread) WFLYSRV0026: WildFly Full 10.1.0.Final (WildFly Core 2.2.0.Final) started (with errors) in 3077ms - Started 326 of 577 services (1 services failed or missing dependencies, 393 services are lazy, passive or on-demand)

                             

                             

                             

                             

                            As before I get the 'welcome to wildfly' page on 8080 and 404 on port 9990

                            • 11. Re: Management console from fedora repo
                              claudio4j

                              Do your /usr/share/wildfly/standalone/configuration/standalone.xml contains the following xml piece ?

                               

                              <management-interfaces>
                                  <http-interface security-realm="ManagementRealm">
                                      <http-upgrade enabled="true"/>
                                      <socket-binding http="management-http"/>
                                  </http-interface>
                              </management-interfaces>
                              

                               

                              Also, can you paste the result of the following command

                               

                              ls -l /usr/share/wildfly/modules/system/layers/base/org/jboss/as/console/main

                              • 12. Re: Management console from fedora repo
                                martinrixham

                                [martin@localhost ~]$ ls -l /usr/share/wildfly/modules/system/layers/base/org/jboss/as/console/main

                                total 4

                                -rw-r--r--. 1 root root 1479 Jul 28 13:51 module.xml

                                [martin@localhost ~]$

                                 

                                 

                                and from the standalone.xml:

                                 

                                    <management-interfaces>
                                        <http-interface security-realm="ManagementRealm" http-upgrade-enabled="true">
                                            <socket-binding http="management-http"/>
                                        </http-interface>
                                    </management-interfaces>
                                • 13. Re: Management console from fedora repo
                                  claudio4j

                                  There must be a release-stream*.jar file in /usr/share/wildfly/modules/system/layers/base/org/jboss/as/console/main, that file is the web management console.

                                  That file must come from a rpm package, but as I don't use the wildfly rpm packages, I cannot tell which package must be installed.

                                  Can you paste the result of: sudo dnf search wildfly|grep console

                                   

                                  Also, the results of the following command: sudo dnf whatprovides /usr/share/wildfly/modules/system/layers/base/org/jboss/as/console/*

                                  • 14. Re: Management console from fedora repo
                                    martinrixham

                                    [martin@localhost ~]$ sudo dnf search wildfly|grep console

                                    Last metadata expiration check: 1:31:38 ago on Sat 18 Nov 2017 20:45:38 IST.

                                    [martin@localhost ~]$

                                     

                                     

                                     

                                    [martin@localhost ~]$ sudo dnf whatprovides /usr/share/wildfly/modules/system/layers/base/org/jboss/as/console/*

                                    Last metadata expiration check: 1:32:40 ago on Sat 18 Nov 2017 20:45:38 IST.

                                    wildfly-10.1.0-11.fc27.noarch : WildFly Application Server

                                    Repo        : @System

                                    Matched from:

                                    Filename    : /usr/share/wildfly/modules/system/layers/base/org/jboss/as/console/main

                                     

                                    wildfly-10.1.0-11.fc27.noarch : WildFly Application Server

                                    Repo        : fedora

                                    Matched from:

                                    Filename    : /usr/share/wildfly/modules/system/layers/base/org/jboss/as/console/main

                                     

                                    [martin@localhost ~]$

                                    1 2 Previous Next