Skip to main content

Posts

Showing posts with the label HBase Fully Distributed Installation

HBase Fully Distributed Installation

Deploying a Fully-Distributed HBase Cluster For the purpose of clarity and ease of expression, I'll be assuming that we are setting up a cluster of 3 nodes with IP Addresses.     192.168.0.1     192.168.0.2     192.168.0.3 where 192.168.0.1 would be the master and 192.168.0.2,3 would be the slaves/region servers. HBase by default manages a ZooKeeper "cluster" for you. It will start and stop the ZooKeeper ensemble as part of the HBase start/stop process. Step 1: Assign hostnames to all the nodes of the cluster.     192.168.0.1 master     192.168.0.2 regionserver1     192.168.0.3 regionserver2   On the Master Node(192.168.0.1) add:     192.168.0.1 master     192.168.0.2 regionserver1     192.168.0.3 regionserver2   On the Region Server 1(192.168.0.2) add:     192.168.0.1 master     192.168.0.2 regionserver1 And on the Region Server 2(19...