Learn how to access an ApsaraDB for HBase Standard Edition cluster using HBase Shell.
Important
HBase Shell does not support Java 11. We recommend that you use Java 8.
Procedure
Prepare an Elastic Compute Service (ECS) instance.
ApsaraDB for HBase requires connections over an internal network, so you must use an ECS instance located in the same region as your cluster.
If you already have an ECS instance, continue to the next step.
If you do not have an ECS instance, purchase a pay-as-you-go instance for testing.
Download HBase Shell.
Log on to ApsaraDB for HBase console. The download path is .
Extract the package.
tar -zxf xxx.tar.gzModify the conf/hbase-site.xml file to add the ZooKeeper addresses for your cluster.
<configuration> <property> <name>hbase.zookeeper.quorum</name> <value>$ZK_IP1,$ZK_IP2,$ZK_IP3</value> <property> <configuration>Access the cluster.
Run the following command.
bin/hbase shell