2 Replies Latest reply on Nov 17, 2011 5:51 AM by dmitriy_fot

    Problem with starting the nightly build JBoss AS 7.1.0.Alpha2

    dmitriy_fot

      Hello everybody,

       

      Whie tying to resolve one of the problems with JPA I tried the nightly build but failed to start the server, here is the log:

       

      08:49:49,788 INFO  [org.jboss.modules] JBoss Modules version 1.1.0.CR3

      08:49:52,882 INFO  [org.jboss.msc] JBoss MSC version 1.0.1.GA

      08:49:53,037 INFO  [org.jboss.as] JBoss AS 7.1.0.Alpha2-SNAPSHOT "Ahoy!" starting

      08:50:00,899 ERROR [org.jboss.as.controller] Operation ("add") failed - address: ([

          ("subsystem" => "ejb3"),

          ("service" => "timer-service")

      ]) - failure description: "JBAS014746: thread-pool-name may not be null"

        • 1. Re: Problem with starting the nightly build JBoss AS 7.1.0.Alpha2
          smarlow

          Its probably not this but you might double check that the server isn't already running from your other AS7 folders on your machine.  I wouldn't expect the above failure but you may as well check.

           

          More likely, you could check the as7/standalone/configuration/standalone.xml contents.  Compare the ejb3 subsystem against the following (especially the "thread-pool name"):

           

           

          <subsystem xmlns="urn:jboss:domain:ejb3:1.2">
                      <mdb>
                          <resource-adapter-ref resource-adapter-name="hornetq-ra"/>
                          <bean-instance-pool-ref pool-name="mdb-strict-max-pool"/>
                      </mdb>
                      <remote connector-ref="remoting-connector" thread-pool-name="default"/>
                      <async thread-pool-name="default"/>
                      <session-bean>
                          <stateless>
                              <bean-instance-pool-ref pool-name="slsb-strict-max-pool"/>
                          </stateless>
                          <singleton default-access-timeout="300000"/>
                          <stateful default-access-timeout="300000"/>
                      </session-bean>
                      <pools>
                          <bean-instance-pools>
                              <strict-max-pool name="slsb-strict-max-pool" max-pool-size="20" instance-acquisition-timeout="5" instance-acquisition-timeout-unit="MINUTES"/>
                              <strict-max-pool name="mdb-strict-max-pool" max-pool-size="20" instance-acquisition-timeout="5" instance-acquisition-timeout-unit="MINUTES"/>
                          </bean-instance-pools>
                      </pools>
                      <timer-service thread-pool-name="default">
                          <data-store path="timer-service-data" relative-to="jboss.server.data.dir"/>
                      </timer-service>
                      <thread-pools>
                          <thread-pool name="default" max-threads="10" keepalive-time="100"/>
                      </thread-pools>
                  </subsystem>
          

           

          You could also try downloading the build again tomorrow. 

          • 2. Re: Problem with starting the nightly build JBoss AS 7.1.0.Alpha2
            dmitriy_fot

            Thank you Scott, the problem was in standalone.xml file.