New Load Balancer stay initializing

I installed the Kibana 4 through the catalog on the “Configuration Options” selected “ETCD-discovery” starting dai he created 3 Kibana 1 containers in each Host of my cluster and 1 Load Balance the container start normally but the Load Balance is in status "initializing"
How can I solve this problem? What you guys need information that can help to solve the problem?

thank you,

1 Like

I actually have this same problem when creating a load balancer for my app. It ends up working but always stays in the initializing state and occasionally comes out of that state and changes to Active.

I managed to figure out the problem … in my case the Node first became configured with the IP PRIVATE and should be with the IP PUBLICO it the agent networks did not communicate … to fix this it was necessary to do the following :

sudo docker run -d -e CATTLE_AGENT_IP=<HOST_IP> --privileged
-v /var/run/docker.sock:/var/run/docker.sock
rancher/agent:v0.8.2 http://SERVER_IP:8080/v1/scripts/xxxx

http://docs.rancher.com/rancher/faqs/#are-the-ips-of-the-hosts-correct-in-the-ui

@stan25 Are you sure that the hosts have cross host communication?

Typically, load balancers will be stuck in initiliazing because they are unable to pass health checks, which require cross host communication working.

Hi denise,

As reported above … the problem was fixed after performing the procedure above.

Thanks for the update @Fernando_Felicissimo. I was trying to make sure @stan25 was able to figure out his issue. :slight_smile:

Ok I will have to take a look at this. Thanks.