mailme365
mailme365

Reputation: 551

how to connect to Hbase managed zookeeper

I created a Hbase test ENV using Pseudo-Distributed mode, and I don't setup an independent zookeeper, I'm wondering how could I connect to zookeeper managed by hbase? I could not find zkCli.sh in hbase installation folder.

Thanks a lot.

Upvotes: 2

Views: 1057

Answers (1)

maxteneff
maxteneff

Reputation: 1531

You should use zkCli tool which is integrated into HBase:

./hbase zkcli -server host:port <cmd> <args>

Documentation page: https://hbase.apache.org/book.html#trouble.tools.builtin.zkcli

Upvotes: 1

Related Questions