1 Reply Latest reply on Apr 24, 2012 1:03 PM by jaikiran

    Which service is container talking about when it says (4 services failed or missing dependencies, 74 services are passive or on-demand)?

    sboscarine

      How can I figure more info as to what services are succeeding and failing in my JBoss AS7 container?  I noticed a few services with failed or missing dependencies when I first unzipped the container. 

      I undeployed all applications to my container and it starts with:

      09:20:36,365 ERROR [org.jboss.as] (Controller Boot Thread) JBAS015875: JBoss AS 7.1.1.Final "Brontes" started (with errors) in 2919ms - Started 135 of 216 services (4 services failed or missing dependencies, 74 services are passive or on-demand)

       

      What 4 services failed?  Where is that information?  I didn't see anything in the server.log or in the console. 

        • 1. Re: Which service is container talking about when it says (4 services failed or missing dependencies, 74 services are passive or on-demand)?
          jaikiran

          The errored out services are logged earlier in the same logs. For example, the log file that you posted earlier in a different thread had this:

           

          50:39,028 INFO  [org.jboss.as.controller] (Controller Boot Thread) JBAS014774: Service status report

          JBAS014775:    New missing/unsatisfied dependencies:

                service jboss.jdbc-driver.ojdbc6_jar (missing) dependents: [service jboss.data-source.java:/longRunningSQL-data_source, service jboss.data-source.java:/ourapp-data_source] 

           

          10:50:39,069 INFO  [org.jboss.as] (Controller Boot Thread) JBAS015951: Admin console listening on http://127.0.0.1:9990

          10:50:39,070 ERROR [org.jboss.as] (Controller Boot Thread) JBAS015875: JBoss AS 7.1.1.Final "Brontes" started (with errors) in 2993ms - Started 135 of 216 services (4 services failed or missing dependencies, 74 services are passive or on-demand)

          So the summary is saying that 4 services failed or are missing dependencies. If you see the previous few lines, it shows the service status report which reports that the service jboss.jdbc-driver.ojdbc6_jar is missing and as a result some other services (listed in the square brackets, separated by commas) which depend on this service have unsatisfied dependencies.