在CentOS6.9中搭建HBase

前端之家收集整理的这篇文章主要介绍了在CentOS6.9中搭建HBase前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

首先,搭建 HBase 依赖 Zookeeper,所以请先安装 Zookeeper

伪分布式版

tar -zxvf hbase-1.2.4-bin.tar.gz

进入解压好的 HBase 目录

cd hbase-1.2.4

编辑 conf/hbase-env.sh 文件

export JAVA_HOME=/opt/jdk1.8.0_102
export HBASE_MANAGES_ZK=false

编辑 conf/hbase-site.xml文件

<configuration> 
	<property> 
		<name>hbase.cluster.distributed</name> 
		<value>true</value> 
	</property> 
	<property> 
		<name>hbase.rootdir</name> 
		<value>hdfs://master:9000/hbase</value> 
	</property> 
	<property> 
		<name>hbase.zookeeper.quorum</name> 
		<value>master</value> 
	</property> 
</configuration>

编辑 conf/regionservers 文件

master

启动 HDFS

/home/bigdata/software/hadoop-2.7.3/sbin/start-dfs.sh

启动 HBase

bin/start-hbase.sh

查看是否启动成功

访问http://master:16010/master-status

原文链接:https://www.f2er.com/centos/375218.html

猜你在找的CentOS相关文章