0
votes

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
Please post logs so we can help you. > cf logs --recent - Ben Rondeau
no such error in logs also - Rahul Kant
Well then how are we going to help you? - Ben Rondeau
Rahul, you probably have to push your application again and then run the logs immediately after the push fails for the cf logs appname --recent command to display results. - Alex da Silva

1 Answers

0
votes

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.