A fully distributed environment has been built on Ali Cloud, and the installation of zookeeper, has been successful. After hbase is installed and configured, there are only processes without hbase on all HMaster data nodes on the primary node after startup.
the configuration file is as follows:
<configuration>
<property>
<name>hbase.master.port</name>
<value>16000</value>
</property>
<property>
<name>hbase.master.info.port</name>
<value>16010</value>
</property>
<property>
<name>hbase.regionserver.port</name>
<value>16201</value>
</property>
<property>
<name>hbase.regionserver.info.port</name>
<value>16301</value>
</property>
<property>
<name>hbase.rootdir</name>
<value>hdfs://master:9000/hbase</value>
</property>
<property>
<name>hbase.cluster.distributed</name>
<value>true</value>
</property>
<property>
<name>hbase.master</name>
<value>master:60000</value>
</property>
<property>
<name>hbase.zookeeper.quorum</name>
<value>master,slave1,slave2</value>
</property>
<property>
<name>hbase.zookeeper.property.dataDir</name>
<value>/usr/zookeeper/zkData</value>
</property>
<property>
<name>>hbase.zookeeper.property.clientPort</name>
<value>2181</value>
</property>
</configuration>
there is no public network card on Aliyun"s host, only an intranet. The public network ip should be converted by NAT.