2016-09-19 136 views
0

我正在嘗試使用maven插件將我的應用程序部署到heroku。但是隨着部署成功完成,應用程序沒有運行。如何使用maven將war文件部署到heroku?

後我跑heroku:deploy-war目標,我有這個在我的控制檯

[INFO] -----> Packaging application... 
[INFO]  - app: fast-tundra-46883 
[INFO]  - including: target/dependency/webapp-runner.jar 
[INFO]  - including: target/spring-simple-app-web-0.0.1-SNAPSHOT.war 
[INFO] -----> Creating build... 
[INFO]  - file: target/heroku/slug.tgz 
[INFO]  - size: 13MB 
[INFO] -----> Uploading build... 
Sep 19, 2016 11:36:54 PM org.apache.http.impl.execchain.RetryExec execute 
INFO: I/O exception (java.net.SocketException) caught when processing request to {s}->https://s3-external-1.amazonaws.com:443: Connection reset by peer: socket write error 
Sep 19, 2016 11:36:54 PM org.apache.http.impl.execchain.RetryExec execute 
INFO: Retrying request to {s}->https://s3-external-1.amazonaws.com:443 
Sep 19, 2016 11:37:15 PM org.apache.http.impl.execchain.RetryExec execute 
INFO: I/O exception (java.net.SocketException) caught when processing request to {s}->https://s3-external-1.amazonaws.com:443: Software caused connection abort: socket write error 
Sep 19, 2016 11:37:15 PM org.apache.http.impl.execchain.RetryExec execute 
INFO: Retrying request to {s}->https://s3-external-1.amazonaws.com:443 
[INFO]  - success 
[INFO] -----> Deploying... 
[INFO] remote: 
[INFO] remote: -----> heroku-maven-plugin app detected 
[INFO] remote: -----> Installing OpenJDK 1.8... done 
[INFO] remote: -----> Discovering process types 
[INFO] remote:  Procfile declares types -> web 
[INFO] remote: 
[INFO] remote: -----> Compressing... 
[INFO] remote:  Done: 61M 
[INFO] remote: -----> Launching... 
[INFO] remote:  Released v8 
[INFO] remote:  https://fast-tundra-46883.herokuapp.com/ deployed to Heroku 
[INFO] remote: 
[INFO] -----> Done 
[INFO] ----------- 

這表明沒有任何重大錯誤。

,當我看着在Heroku的日誌,我得到

2016-09-19T22:41:51.185261+00:00 heroku[api]: Deploy null by [email protected] 
2016-09-19T22:41:51.185261+00:00 heroku[api]: Release v8 created by [email protected] 
2016-09-19T22:41:51.990503+00:00 heroku[slug-compiler]: Slug compilation started 
2016-09-19T22:41:51.990512+00:00 heroku[slug-compiler]: Slug compilation finished 

這再次表明沒有任何錯誤。但是,當我瀏覽到地址在我的應用程序想運行在Heroku上我得到了日誌

2016-09-19T22:49:17.825115+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/" host=fast-tundra-46883.herokuapp.com request_id=4851381b-0fab-49dc-a1a6-d5ebfcad1a97 fwd="79.71.253.17" dyno= connect= service= status=503 bytes= 

2016-09-19T22:49:17.825115+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/" host=fast-tundra-46883.herokuapp.com request_id=4851381b-0fab-49dc-a1a6-d5ebfcad1a97 fwd="79.71.253.17" dyno= connect= service= status=503 bytes= 
2016-09-19T22:49:17.976534+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/favicon.ico" host=fast-tundra-46883.herokuapp.com request_id=e0a1fc84-6daa-4e1f-a58d-eaf579e170d6 fwd="79.71.253.17" dyno= connect= service= status=503 bytes= 

現在,我使用heroiku Maven插件,而這究竟是怎麼配置

<plugin> 
    <groupId>com.heroku.sdk</groupId> 
    <artifactId>heroku-maven-plugin</artifactId> 
    <version>1.1.1</version> 
    <configuration> 
     <appName>fast-tundra-46883</appName> 
    </configuration> 
</plugin> 

我試着使用<processTypes></processTypes>,因爲我沒有Procfile。但在構建期間我得到警告

[WARNING] The <processTypes> value will be ignored when deploying a WAR file. Use `heroku:deploy` goal for custom processes. 

而且它不會改變任何東西。

有人可以幫助我,告訴我我做錯了什麼嗎? 問候

回答

1

嘗試運行:

$ heroku ps:scale web=1 

我覺得你的賽道可能是alseep。你可以檢查它的狀態運行:

$ heroku ps 

然而,在部署過程中java.net.SocketException是關於。但看起來似乎是成功部署的。

相關問題