简体   繁体   中英

Staging Error while Pushing a Spring Application to Cloud Foundry

I am getting the following Error while pushing the Sample Hello World spring application on CloudFoundry.

Using manifest file C:\Users\I321571\Desktop\helo\Hello\manifest.yml

Updating app Hello in org trial / space I321571 as I321571...
OK

Uploading Hello...
Uploading app files from: C:\Users\I321571\Desktop\helo\Hello
Uploading 20.1K, 46 files
Done uploading
OK

Stopping app Hello in org trial / space I321571 as I321571...
OK

Starting app Hello in org trial / space I321571 as I321571...
-----> Downloaded app package (12K)
    Cloning into '/tmp/buildpacks/java-buildpack'...
    -----> Java Buildpack Version: b050954 | https://github.com/cloudfoundry/java-buildpack.git#b050954
[Buildpack]                      ERROR Compile failed with exception #<RuntimeError: No container can run this application. Please ensure that you've pushed a valid JVM artifact or artifacts using the
-p command line argument or path manifest entry. Information about valid JVM artifacts can be found at https://github.com/cloudfoundry/java-buildpack#additional-documentation. >
No container can run this application. Please ensure that you've pushed a valid JVM artifact or artifacts using the -p command line argument or path manifest entry. Information about valid JVM artifac
ts can be found at https://github.com/cloudfoundry/java-buildpack#additional-documentation.
Staging failed: Buildpack compilation step failed

FAILED
Error restarting application: BuildpackCompileFailed

TIP: use 'cf logs Hello --recent' for more information

this is my manifest.yml

applications:
- name: Hello
  memory: 512M
  instances: 1

Please help me in resolving the issue.

I encountered this error too! Make sure the command given is valid

  cf push {your-app-name} -p {path to your executable jar}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM