2014-04-01 110 views
3
Tue Apr 01 17:41:45 GMT+200 2014 
Failed to enable fal2-ear-0.0.8.ear. 

Unexpected HTTP response: 500 

Request 
{ 
    "address" => [("deployment" => "fal2-ear-0.0.8.ear")], 
    "operation" => "deploy" 
} 

Response 

Internal Server Error 
{ 
    "outcome" => "failed", 
    "failure-description" => {"JBAS014879: One or more services were unable to start due to one or more indirect dependencies not being available." => { 
     "Services that were unable to start:" => [ 
      "jboss.deployment.subunit.\"fal2-ear-0.0.8.ear\".\"ccbe-fal2.war\".INSTALL", 
      "jboss.deployment.unit.\"fal2-ear-0.0.8.ear\".INSTALL" 
     ], 
     "Services that may be the cause:" => ["jboss.remoting.remotingConnectorInfoService.http-remoting-connector"] 
    }}, 
    "rolled-back" => true 
} 

當我想在wildfly中部署我的多模塊maven Spring項目時,總是會出現此錯誤。 詹金斯爲我做了一個EAR文件,我只是把它添加到wild。。在wildfly中部署EAR時出錯

任何人都知道它是什麼意思?我無法在網上找到它

Thx !!

我的錯誤日誌文件:

2014-04-01 09:21:08,942 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "fal2-ear-0.0.6.ear" (runtime-name: "fal2-ear-0.0.6.ear") 
2014-04-01 09:21:09,425 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015876: Starting deployment of "null" (runtime-name: "ccbe-fal2.war") 
2014-04-01 09:21:11,599 ERROR [org.jboss.as.controller.management-operation] (XNIO-1 task-6) JBAS014613: Operation ("deploy") failed - address: ([("deployment" => "fal2-ear-0.0.6.ear")]) - failure description: {"JBAS014879: One or more services were unable to start due to one or more indirect dependencies not being available." => { 
    "Services that were unable to start:" => [ 
     "jboss.deployment.subunit.\"fal2-ear-0.0.6.ear\".\"ccbe-fal2.war\".INSTALL", 
     "jboss.deployment.unit.\"fal2-ear-0.0.6.ear\".INSTALL" 
    ], 
    "Services that may be the cause:" => ["jboss.remoting.remotingConnectorInfoService.http-remoting-connector"] 
}} 
2014-04-01 09:21:11,614 ERROR [org.jboss.as.server] (XNIO-1 task-6) JBAS015870: Deploy of deployment "fal2-ear-0.0.6.ear" was rolled back with the following failure message: 
{"JBAS014879: One or more services were unable to start due to one or more indirect dependencies not being available." => { 
    "Services that were unable to start:" => [ 
     "jboss.deployment.subunit.\"fal2-ear-0.0.6.ear\".\"ccbe-fal2.war\".INSTALL", 
     "jboss.deployment.unit.\"fal2-ear-0.0.6.ear\".INSTALL" 
    ], 
    "Services that may be the cause:" => ["jboss.remoting.remotingConnectorInfoService.http-remoting-connector"] 
}} 
2014-04-01 09:21:11,692 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015877: Stopped deployment null (runtime-name: ccbe-fal2.war) in 79ms 
2014-04-01 09:21:11,692 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015877: Stopped deployment fal2-ear-0.0.6.ear (runtime-name: fal2-ear-0.0.6.ear) in 83ms 
2014-04-01 09:21:11,692 INFO [org.jboss.as.controller] (XNIO-1 task-6) JBAS014774: Service status report 
JBAS014777: Services which failed to start:  service jboss.undertow.listener.default: org.jboss.msc.service.StartException in service jboss.undertow.listener.default: Could not start http listener 
+0

你的server.log是什麼意思? – ctomc

+0

我添加了我的日誌文件。 thx提前:) – user3472577

+2

愚蠢。端口8080已被使用:) – user3472577

回答

10

其實我有同樣的問題對於獨立Wildfly。

  1. 首先我看了一下standalone/log/server.log。最後一行表示 http偵聽器沒有初始化。
  2. 然後我檢查了standalone/configuration/standalone-full.xml。它說 http分配了8080。
  3. 檢查了端口和8080被切諾基服務器使用。

因此,我改變了切諾基端口,並重新啓動了兩個(切諾基和Wild))服務器,並做到了這一點。

希望你解決了這個問題,因爲我做到了。

+0

是的......謝謝...... –