Hi dear all,
I have an existing zookeeper ensemble, which is kafka01:2181,kafka02:2182,kafka03:2183,data04:2184,data05:2185
(port is different)
and export HBASE_MANAGES_ZK=false in hbase-env.sh,
and in hbase-site.xml
<property>
<name>hbase.zookeeper.quorum</name>
<value>kafka01:2181,kafka02:2182,kafka03:2183,data04:2184,data05:2185</value>
</property>
but after I started the hbase cluster, I found the log :
2015-06-25 11:02:43,910 INFO [main] zookeeper.RecoverableZooKeeper: Process identifier=master:16020
connecting to ZooKeeper ensemble=data04:2181,kafka03:2181,kafka02:2181,kafka01:2181,data05:2181
Why are the ports turned to be 2181?
|