搭建zoopker+hbase 环境

继续上一篇hadoop的安装。

一、安装zookooper

1、解压zookooper

tar -zxfv zookeeper-3.3.6.tar.gz

2、修改配置:

cp zookeeper/conf/zoo_sample.cfg zoo.cfg

The number of milliseconds of each tick

tickTime=2000

The number of ticks that the initial

synchronization phase can take

initLimit=10

The number of ticks that can pass between

sending a request and getting an acknowledgement

syncLimit=5

the directory where the snapshot is stored.

dataDir=/usr/zookeeper-3.3.6/data

the port at which the clients will connect

clientPort=2181
#autopurge.purgeInterval=1

server.1=192.168.1.101:2888:3888
server.2=192.168.1.102:2888:3888

3、在/usr/zookeeper-3.3.6/data 目录下文件myid 写入1(要根据ip地质对应起来)

4、scp -r /usr/zookeeper-3.3.6 ~slave:/usr

5 分别在master \slave1上启动zoopker

二、安装hbase

1、解压 tar -zxvf hbase-1.3.1-bin.tar.gz

2、修改hbase.env.sh 增加JAVA_HOME ,export HBASE_MANAGES_ZK=false

3、修改regionservers 增加

master

slave1

4、修改hbase-site.xml

<configuration>
<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.zookeeper.quorum</name>
<value>master,slave1</value>
</property>
<property>
<name>hbase.master</name>
<value>hdfs://master:60000</value>
</property>
<property>
<name>hbase.zookeeper.property.dataDir</name>
<value>/usr/zookeeper-3.3.6/data</value>
</property>
<property>
<name>hbase.zookeeper.property.clientPort</name>
<value>2181</value>
</property>
</configuration>

5、 scp /usr/hbase slave1:/usr

6、启动<configuration>

<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.zookeeper.quorum</name>
<value>master,slave1</value>
</property>
<property>
<name>hbase.master</name>
<value>hdfs://master:60000</value>
</property>
<property>
<name>hbase.zookeeper.property.dataDir</name>
<value>/usr/zookeeper-3.3.6/data</value>
</property>
<property>
<name>hbase.zookeeper.property.clientPort</name>
<value>2181</value>
</property>
</configuration>

猜你喜欢

转载自blog.51cto.com/14257289/2459324