0

Cloud Foundry プラグインを使用しています。資格情報を Config.groovy に設定しました。表示されるエラーについて詳しく教えてください。

Application Deployed URL: 'sqr-gb-ks.cloudfoundry.com'
> 
Would you like to create and bind a mysql service?[y,n] > Invalid input. Must be one of [y,n] y
Service 'mysql-8a02c10' provisioned.
> 
Would you like to create and bind a postgresql service?[y,n] > Invalid input. Must be one of [y,n] y
Service 'postgresql-d6ab9c9' provisioned.
| Creating application sqr-gb-ks at sqr-gb-ks.cloudfoundry.com with 1024MB and services [mysql-8a02c10, postgresql-d6ab9c9]: OK
| Uploading Application:
|   Checking for available resources: OK
|   Processing resources: OK
|   Packing application: OK
|   Uploading (50K): OK
| Trying to start Application: 'sqr-gb-ks'.....
| Error ERROR - Application 'sqr-gb-ks' failed to start, logs information below.
==== logs/stderr.log ====

Oct 22, 2012 4:57:47 PM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-25918
Oct 22, 2012 4:57:47 PM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 403 ms
Oct 22, 2012 4:57:47 PM org.apache.catalina.realm.JAASRealm setContainer
INFO: Set JAAS app name Catalina
Oct 22, 2012 4:57:47 PM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
Oct 22, 2012 4:57:47 PM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/6.0.35
Oct 22, 2012 4:57:47 PM org.apache.catalina.startup.HostConfig deployDirectory
INFO: Deploying web application directory ROOT
Oct 22, 2012 4:58:10 PM org.apache.catalina.core.StandardContext start
SEVERE: Error listenerStart
Oct 22, 2012 4:58:10 PM org.apache.catalina.core.StandardContext start
SEVERE: Context [] startup failed due to previous errors
Oct 22, 2012 4:58:10 PM org.apache.catalina.loader.WebappClassLoader clearReferencesThreads
SEVERE: The web application [] appears to have started a thread named [Timer-0] but has failed to stop it. This is very likely to create a memory leak.
Oct 22, 2012 4:58:10 PM org.apache.catalina.loader.WebappClassLoader clearReferencesThreads
SEVERE: The web application [] appears to have started a thread named [net.sf.ehcache.CacheManager@403525a2] but has failed to stop it. This is very likely to create a memory leak.

==== logs/stdout.log ====

[  Envjs/1.6 (Rhino; U; Linux amd64 2.6.38-15-virtual; en-US; rv:1.7.0.rc2) Resig/20070309 PilotFish/1.2.13  ]
[  Envjs/1.6 (Rhino; U; Linux amd64 2.6.38-15-virtual; en-US; rv:1.7.0.rc2) Resig/20070309 PilotFish/1.2.13  ]
[  Envjs/1.6 (Rhino; U; Linux amd64 2.6.38-15-virtual; en-US; rv:1.7.0.rc2) Resig/20070309 PilotFish/1.2.13  ]
[  Envjs/1.6 (Rhino; U; Linux amd64 2.6.38-15-virtual; en-US; rv:1.7.0.rc2) Resig/20070309 PilotFish/1.2.13  ]
Stopping Tomcat because the context stopped.
4

2 に答える 2

1

odelia Technologiesの友人であるbertrandのおかげで、アプリをクラウドにプッシュすることに成功しました。追加したプラグインの1つをオフにして、コマンドを実行しました:grails cf-bind-service mysql-f1 ..(まだ実行していませんでした!)次に、DataSource.groovyを変更する必要がありました。

 production {
            dataSource {
                dialect= org.hibernate.dialect.MySQLInnoDBDialect
                driverClassName = "com.mysql.jdbc.Driver"
                    dbCreate = "update"
                username = "n/a"
                password = "n/a"
                url = "n/a"            
             }
     }
于 2012-10-25T15:30:28.503 に答える
1

Grails アプリの場合は、STS の代わりにhttp://grails.org/plugin/cloud-foundryプラグインを使用する必要があります。これは、JDBC、MongoDB、Redis などの Spring Bean を認識しており、それらを自動的に再構成するためです。展開中のあなた。ここのドキュメントを参照してください: http://grails-plugins.github.com/grails-cloud-foundry/docs/manual/index.html

また、MySQL と PostgreSQL データベースの両方が本当に必要ですか? あなたはおそらく1つを選ぶべきです:)

サーバーの tomcat/logs ディレクトリにある stacktrace.log と「localhost」ログを見ると、実際の問題を確認できます。実際のスタックトレースとエラー メッセージは、デプロイ時に表示される stdout ではなく、そこにあります。

于 2012-10-23T00:21:32.043 に答える