hbase-book
hbase-book copied to clipboard
how to connect hbase remotely
Hi How to connect hbase remotely? what config i need to change in hbase server? thanks
Configuration conf = HBaseConfiguration.create();
conf.set("hbase.zookeeper.quorum", "192.168.0.174");
conf.set("hbase.zookeeper.property.clientPort", "2181");
HBaseAdmin.available(conf);
Above doesn't work thanks Peter