Ubuntu 12.04 Hadoop + HBase distribute

环境Ubuntu Desktop 12.04

1  下载

wget  http://mirror.candidhosting.com/pub/apache/hbase/hbase-0.92.1/hbase-0.92.1.tar.gz

2 修改hbase.site.xml

<configuration>

 <property>

<name>hbase.rootdir</name>

<!—这里的value应该是Hadoop 中 core-site.xml中fs.default.name的值hdfs://master:9000/加上hbase这个可以随便起

<value>hdfs://master:9000/hbase</value>

   <description>The directory shared by RegionServers.

   </description>

 </property>

 <property>

   <name>dfs.replication</name>

   <value>3</value>

   <description>The replication count for HLog and HFile storage.Should not be greater than HDFS datanode count.

   </description>

 </property>

</configuration>

3 修改regionserver的值 conf/reginserver

每行代表一个机器

我的配置如下

Slave01

Slave02

4 复制配置好的hbase文件以此到别的机器

配置结束。

到${HADOOP_HOME}/bin目录 ./start-dfs.sh

到${HADOOP_HOME}/bin目录 ./start-hbase.sh

验证hbase是否装成功

相关推荐