Application upload issue in bluemix

65 views Asked by At

When pushing my application to bluemix with cf cli, it is showing "0 of 1 instances running, 1 starting"...and after sometime "FAILED start app timeout"

For the same account, in eclipse ibm bluemix server is not starting.

1

There are 1 answers

2
Rahul Kant On BEST ANSWER

Thanks Ram, We contacted the IBM customer support for the same problem and they suggested us to use a different buildpack.

This cf command prints the available buildpacks list for liberty runtime: cf buildpacks | grep -i liberty

It returns 2 buildpack options To specify the buildpack

cf push appName -b buildPackName

Hope this will help others.