[jboss-jira] [JBoss JIRA] (AS7-3024) AS7 cannot startup with standalone-xts.xml configuration file
Paul Robinson (Commented) (JIRA)
jira-events at lists.jboss.org
Wed Dec 21 09:26:09 EST 2011
[ https://issues.jboss.org/browse/AS7-3024?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12652559#comment-12652559 ]
Paul Robinson commented on AS7-3024:
------------------------------------
Brian,
I think updating the file should be acceptable for an interim solution. However, I'd prefer it if it didn't turn into something that ended up living on forever. How confident are you that the improved tooling will be available in 7.2?
Ivo,
>From a QE point of view, do you think you could update your tests to edit the standalone.xml? You just need to add ~4 lines in the right place.
> AS7 cannot startup with standalone-xts.xml configuration file
> -------------------------------------------------------------
>
> Key: AS7-3024
> URL: https://issues.jboss.org/browse/AS7-3024
> Project: Application Server 7
> Issue Type: Bug
> Components: Domain Management
> Affects Versions: 7.1.0.Beta1b
> Reporter: Ivo Studensky
> Assignee: Paul Robinson
> Fix For: 7.1.0.Final
>
>
> The docs/examples/configs/standalone-xts.xml seems to be out of date as AS7 fails to start with it.
> See the output snippet:
> {noformat}
> $ sh standalone.sh --server-config=../../docs/examples/configs/standalone-xts.xml
> .
> .
> 16:43:10,393 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC00001: Failed to start service jboss.messaging.default: org.jboss.msc.service.StartException in service jboss.messaging.default: JBAS011644: Failed to start service
> at org.jboss.as.messaging.HornetQService.start(HornetQService.java:193)
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1824) [jboss-msc-1.0.1.GA.jar:]
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1759) [jboss-msc-1.0.1.GA.jar:]
> at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) [:1.6.0_29]
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) [:1.6.0_29]
> at java.lang.Thread.run(Thread.java:662) [:1.6.0_29]
> Caused by: org.jboss.msc.service.StartException in anonymous service: JBAS011641: Failed to find SocketBinding for connector: netty
> at org.jboss.as.messaging.HornetQService.start(HornetQService.java:128)
> ... 5 more
> 16:43:10,438 INFO [org.jboss.ws.common.management.AbstractServerConfig] (MSC service thread 1-5) null null
> .
> .
> 16:43:14,643 ERROR [org.jboss.as] (Controller Boot Thread) JBoss AS 7.1.0.CR1-SNAPSHOT "Tesla" started (with errors) in 5839ms - Started 146 of 220 services (7 services failed or missing dependencies, 66 services are passive or on-demand)
> {noformat}
> The problem seems to really be in the outdated standalone-xts.xml file and not in JBossXTS itself since it works correctly when the following patch is applied to standalone-full.xml:
> {noformat}
> --- a/standalone-full.xml
> +++ b/standalone-full.xml
> @@ -29,6 +29,7 @@
> <extension module="org.jboss.as.web"/>
> <extension module="org.jboss.as.webservices"/>
> <extension module="org.jboss.as.weld"/>
> + <extension module="org.jboss.as.xts"/>
> </extensions>
>
> <management>
> @@ -384,6 +385,9 @@
> </endpoint-config>
> </subsystem>
> <subsystem xmlns="urn:jboss:domain:weld:1.0"/>
> + <subsystem xmlns="urn:jboss:domain:xts:1.0">
> + <xts-environment url="http://localhost:8080/ws-c11/ActivationService"/>
> + </subsystem>
> </profile>
>
> <interfaces>
> {noformat}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list