Reputation: 475
I am trying to install Spinnaker but facing issue every time. 1. Tried to deploy using Google Launcher it is not starting anything on port 9000 2. Now trying to install using steps mentioned in https://github.com/spinnaker/spinnaker. Here I ../spinnaker/dev/run_dev.sh I am getting an exception
Invocation of init method failed; nested exception is com.netflix.astyanax.connectionpool.exceptions.NoAvailableHostsException: NoAvailableHostsException: [hos
t=None(0.0.0.0):0, latency=0(0), attempts=0]No hosts to borrow from
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredMethodElement.inject(AutowiredAnnotationBeanPostProcessor.java:661)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:88)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:331)
I have also installed Cassandra (Using steps https://hostpresto.com/community/tutorials/how-to-install-apache-cassandra-on-ubuntu-14-04/) and have checked I am able to do cqlsh.
Any help please
Thanks, Amol
Upvotes: 0
Views: 214
Reputation: 51
The Google Spinnaker Cloud Launcher indeed appears to be broken. I recently tried several times to deploy Spinnaker using it and experienced the same issues as you.
When you say:
Now trying to install using steps mentioned in https://github.com/spinnaker/spinnaker.
do you mean you're setting up the development environment? That's meant to be used when you actually want to write code for Spinnaker, not for normal use of the project.
The recommended way of getting a running Spinnaker installation is to use Halyard, the Spinnaker deployment tool.
Upvotes: 1