I need to have local Couchbase cluster and replicate data from our prod cluster onto it, can't have it installed directly on OS X (because of vbuckets incompatibility - prod cluster is on linux).
Docker for the rescue. I've managed to create Dockerfile, you can see it here.
Now, the cluster runs, it is reachable within LAN, all necessary ports are forwarding - I used tricks described here
I successfully created cluster reference in XDCR tab, yet whenever I try to replicate bucket's data - it changes my cluster's hostname to some non-sensical ip address and creates a log entry:
Updated remote cluster `mycluster` hostname to "172.17.0.5:8091"
because old one ("mylaptop.company.com:8091")
is not part of the cluster anymore
I know Couchbase is very sensitive to ip addresses, as you can see, instead I'm using hostname of my machine (host of the docker container). I tried changing container's host name using docker run -h
, that didn't seem to help.
Anyone, have you guys set XDCR with a cluster running in a docker container?
The cluster wont accept your node as part of it, so it gets knocked out. Seems like you haven't got your networking set up right.
Could be that you need some more ports opened up: (all node-to-node ports) http://docs.couchbase.com/couchbase-manual-2.5/cb-install/#network-ports
Also, how do you start your container? Putting expose in the dockerfile wont open up the ports, you also need to put -P in your command to really expose the ports