0

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.

Ram Vennam
  • 3,536
  • 1
  • 12
  • 19
Rahul Kant
  • 33
  • 8

1 Answers1

0

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.

v.bontempi
  • 1,562
  • 1
  • 9
  • 10
Rahul Kant
  • 33
  • 8
  • Could you specify which application's specs suggested to use a different buildpack and which is the buildpack working? – v.bontempi Feb 24 '16 at 07:24
  • There were 2 buildpacks listed after running the command. First was liberty-for-java_v2_3-20151208-1311 and second was liberty-for-java. We then ran the second command with liberty-for-java – Rahul Kant Mar 01 '16 at 05:32