使用货物将战争部署到远程Jboss7服务器

时间:2012-09-12 15:20:33

标签: jboss7.x cargo maven-cargo

我想使用Cargo将我的maven生成的war文件部署到已经运行的远程JBoss服务器上。

我已将pom.xml配置为:

    ...
        <plugin>
            <groupId>org.codehaus.cargo</groupId>
            <artifactId>cargo-maven2-plugin</artifactId>

            <dependencies>
                <dependency>
                    <groupId>org.jboss.as</groupId>
                    <artifactId>jboss-as-controller-client</artifactId>
                    <version>7.1.0.Final</version>
                </dependency>
            </dependencies>

            <configuration>
                <!-- Container configuration -->
                <container>
                    <timeout>300000</timeout> <!-- 5 minutes -->
                    <containerId>jboss71x</containerId>
                    <type>remote</type>
                </container>

                <!-- Configuration to use with the container -->
                <configuration>
                    <type>runtime</type>
                    <properties>
                        <cargo.hostname><myIP></cargo.hostname>
                        <cargo.jboss.management.port>9999</cargo.jboss.management.port>
                        <cargo.remote.username><myUser></cargo.remote.username>
                        <cargo.remote.password><myPass></cargo.remote.password>
                    </properties>
                </configuration>
                <!-- Deployer configuration -->
                <deployer>
                    <type>remote</type>
                </deployer>

                <!-- Deployables configuration -->
                <deployables>
                    <deployable>
                        <groupId>de.<myGroup></groupId>
                        <artifactId><myArtifact></artifactId>
                        <type>war</type>
                        <pingURL>http://<myIP>:8080/<myContextPath></pingURL>
                        <pingTimeout>60000</pingTimeout>
                    </deployable>
                </deployables>

            </configuration>
        </plugin>
    ...

当然,所有形式的变量&lt; my...&gt;充满了真正的价值观。

如果我使用maven命令运行它:

mvn -X cargo:deploy

maven控制台说:

...
Sep 12, 2012 5:06:12 PM org.xnio.nio.NioXnio <clinit>
INFO: XNIO NIO Implementation Version 3.0.3.GA
Sep 12, 2012 5:06:12 PM org.jboss.remoting3.EndpointImpl <clinit>
INFO: JBoss Remoting version 3.2.2.GA
[DEBUG] [swordCallbackHandler] Responded to a RealmCallback
[DEBUG] [swordCallbackHandler] Responded to a NameCallback
[DEBUG] [swordCallbackHandler] Responded to a PasswordCallback
[INFO] [Boss7xRemoteDeployer] The deployment has failed: org.codehaus.cargo.util.CargoException: Cannot deploy deployable org.codehaus.cargo.container.jboss.deployable.JBossWAR[myWar.war]
...

在正在运行的JBoss服务器上,我可以在控制台中看到一条日志消息,如下所示:

17:07:24,197 ERROR [org.jboss.remoting.remote.connection] (Remoting "pc09:MANAGEMENT" read-1) JBREM000200: Remote connection failed: java.io.IOException: Eine vorhandene Verbindung wurde vom Remotehost geschlossen.

(对不起日志里面的日志。它基本上说:现有的连接已被远程主机关闭。)

是否有人知道可能出现的问题或如何从货物中获取更多调试信息以确定问题究竟是什么?

BTW:我已经使用JBoss CLI访问Jboss服务器进行Arquillian测试,所以我非常有信心通过CLI访问该Jboss服务器应该没问题。

修改 好像我必须首先取消部署。为了确保对CLI的访问有效,我只使用jboss-cli.bat连接到它。然后我巧合地取消了现有的战争,之后通过货物的部署开始起作用。 (我可以关闭此问题或以任何方式将其标记为已解决吗?)

0 个答案:

没有答案