0

cloudfoundary ベースのインフラストラクチャへのアプリのデプロイに cf-mvn-plugin を使用しようとしています。

アプリケーション (問題なくローカルで実行される) はすぐにクラッシュします。ログのブートストラップは私のローカル マシンとほとんど同じですが、違いは次のようなメッセージが表示されることだけです。

2015-12-07 10:39:04 [App/0] OUT 2015-12-07 09:39:04,691 INFO org.springframework.web.context.support.XmlWebApplicationContext - Bean 'org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0' of type [class org.springframework.transaction.annotation.AnnotationTransactionAttributeSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)

次に、ブートストラップ中の特定の時点で、アプリがクラッシュします。

2015-12-07 10:42:41 [DEA/18] ERR Instance (index 0) failed to start accepting connections
2015-12-07 10:42:41 [API/0] OUT App instance exited with guid 405d6d18-d730-4765-a98b-7f5986f87eb2 payload: {"cc_partition"=>"default", "droplet"=>"405d6d18-d730-4765-a98b-7f5986f87eb2", "version"=>"6023f58c-9165-4a6d-8403-2727ec9f3723", "instance"=>"2118978ed1f54f18a03b1d77f82f3b58", "index"=>0, "reason"=>"CRASHED", "exit_status"=>255, "exit_description"=>"failed to accept connections within health check timeout", "crash_timestamp"=>1449481361}
2015-12-07 10:42:41 [API/3] OUT App instance exited with guid 405d6d18-d730-4765-a98b-7f5986f87eb2 payload: {"cc_partition"=>"default", "droplet"=>"405d6d18-d730-4765-a98b-7f5986f87eb2", "version"=>"6023f58c-9165-4a6d-8403-2727ec9f3723", "instance"=>"2118978ed1f54f18a03b1d77f82f3b58", "index"=>0, "reason"=>"CRASHED", "exit_status"=>255, "exit_description"=>"failed to accept connections within health check timeout", "crash_timestamp"=>1449481361}

ここに私の現在のcf-maven-plugin設定:

<plugin>
                <groupId>org.cloudfoundry</groupId>
                <artifactId>cf-maven-plugin</artifactId>
                <version>1.1.2</version>
                <configuration>
                    <server>${cloudfoundry.server}</server>
                    <target>${cloudfoundry.target}</target>
                    <org>${cloudfoundry.org}</org>
                    <space>${cloudfoundry.space}</space>
                    <memory>1024</memory>
                    <appname>myApp</appname>
                    <url>my-app.scapp.io</url>
                    <healthCheckTimeout>180</healthCheckTimeout>
                    <appStartupTimeout>10</appStartupTimeout>
                    <env>
                        <JAVA_OPTS>-Djavax.xml.accessExternalSchema=all -Djava.security.egd=file:///dev/urandom</JAVA_OPTS>
                    </env>
                    <services>
                        <service>
                            <name>datadb</name>
                            <label>${cloudfoundry.service.datadb.label}</label>
                            <plan>${cloudfoundry.service.datadb.plan}</plan>
                        </service>
                    </services>
                </configuration>
            </plugin>

CLI バージョン: 6.14.0+2654a47-2015-11-18

cf-mvn-plugin バージョン: 1.1.2

ありがとう!

4

1 に答える 1