如何解决启动Web连接器Jboss的错误?

时间:2015-02-04 07:27:16

标签: java eclipse tomcat jboss migration

我尝试将我的应用程序从Tomcat服务器迁移到JBoss6.3.0。

我的schedule.war文件在Tomcat中运行正常,但是当我移动它时 C:\ EAP-6.3.0 \ jboss的-EAP-6.3 \独立\部署 服务器显示错误:

09:04:25,907 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBA
S015877: Stopped deployment schedule.war (runtime-name: schedule.war) in 284ms
09:04:25,909 INFO  [org.jboss.as.controller] (DeploymentScanner-threads - 2) JBA
S014774: Service status report
JBAS014777:   Services which failed to start:      service jboss.deployment.unit
."schedule.war".POST_MODULE
      service jboss.web.connector.http: org.jboss.msc.service.StartException in
service jboss.web.connector.http: JBAS018007: Error starting web connector

1 个答案:

答案 0 :(得分:1)

这可能是一个港口冲突。 JBoss正在尝试使用TomCat已经使用的相同端口。

更改独立\配置文件standalone.xml(或您正在使用的其他配置文件)中的http端口,如:

    <socket-binding name="http" port="8179"/>

并重新启动服务器。