удаленное развертывание на tomcat с CARGO завершается неудачно с TIMEOUT - PullRequest
2 голосов
/ 05 апреля 2011

Я сталкиваюсь с проблемой при удаленном развертывании с помощью cargo-maven2-plugin (1.0.6).Война, которую я разворачиваю, довольно велика, и 20 секунд по умолчанию недостаточно для полного развертывания.Фактическое исключение (через 20 секунд):

Failed to execute goal org.codehaus.cargo:cargo-maven2-plugin:1.0.6:deploy (default-cli) on project myproject: Execution default-cli of goal org.codehaus.cargo:cargo-maven2-plugin:1.0.6:deploy failed: Failed to deploy [path/myproject.war]: Connection timed out: connect -> [Help 1]

У меня груз настроен следующим образом:

<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.0.6</version>
<configuration>
    <wait>true</wait>
    <container>
        <containerId>tomcat7x</containerId>
        <type>remote</type>
        <timeout>600000</timeout>
    </container>
    <configuration>
        <type>runtime</type> <!-- or remote -->
        <properties>
            <cargo.tomcat.manager.url>http://...:8080/manager/text</cargo.tomcat.manager.url>
            <cargo.remote.username>...</cargo.remote.username>
            <cargo.remote.password>...</cargo.remote.password>
            <cargo.hostname>...</cargo.hostname>
            <cargo.servlet.port>8080</cargo.servlet.port>
            </properties>
    </configuration>

    <deployer>
        <type>remote</type> <!-- or installed -->
        <deployables>
            <deployable>
                <groupId>...</groupId>
                <artifactId>...</artifactId>
                <type>war</type>
                <properties>
                    <context>...</context>
                </properties>
                <pingURL>http://www.myProject.com:8080/</pingURL>
                <pingTimeout>25000</pingTimeout>
            </deployable>
        </deployables>
    </deployer>
</configuration>

<executions></executions>
</plugin>

1 Ответ

0 голосов
/ 05 апреля 2011

Это не похоже на превышение времени ожидания контейнера . Скорее всего, он не может подключиться к tomcat по указанному хосту и порту.

...