2016-09-30 25 views
0

、私は例外を満たす:のJBoss:私はこれ以上私のJBossサーバーにデプロイすることはできません何らかの理由で致命的なブートエラー

17:53:41,244 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) JBAS014613: Operation ("add") failed - address: ([("deployment" => "my.ear")]) - failure description: "JBAS018717: No deployment content with hash eee1ea03abae2b5f61718c00189c0ec40bf914a0 is available in the deployment content repository for deployment 'my.ear'. This is a fatal boot error. To correct the problem, either restart with the --admin-only switch set and use the CLI to install the missing content or remove it from the configuration, or remove the deployment from the xml configuration file and restart." 
17:53:41,250 FATAL [org.jboss.as.server] (Controller Boot Thread) JBAS015957: Server boot has failed in an unrecoverable manner; exiting. See previous messages for details. 

私はcliからそれをアンデプロイすることはできません。

$JBOSS_HOME/bin/jboss-cli.sh --connect controller=localhost:my_port 
[[email protected]:my_port /] undeploy my.ear 
Undeploy failed: {"JBAS014653: Composite operation failed and was rolled back. Steps that failed:" => {"Operation step-1" => "JBAS014807: Management resource '[(\"deployment\" => \"my.ear\")]' not found"}} 

は私を助けてください何が間違っているのか理解する。

答えて

2

これは、cliが見つからないアプリケーションへの参照を持っている場合に発生します。

スタンドアロンフォルダ内のデータディレクトリを削除したと思われますか?

問題を解決するには、あなたのstandalone.xmlファイル(またはものは何でも使用しているバージョン)を編集し、展開要素を探し、そして失敗した展開要素を削除し、そして、再度

を展開しようとすることができます例

<deployments> 
    <deployment name="my.ear" runtime-name="my.ear"> 
     <content sha1="xxxxxxx"/> 
    </deployment> 
</deployments> 
+0

はい、あなたは正しいです。私がプロセスを殺したので、Arquillianはテスト後にクリアしなかった –

関連する問題