window10单机部署hbase-2.5.5-hadoop3

一、介绍

hbase是什么,Hbase是一个分布式,可扩展,支持海量数据存储的noSQL数据库

二、下载hbase

https://mirrors.tuna.tsinghua.edu.cn/apache/hbase/2.5.6/

三、配置hbase环境变量

window10单机部署hbase-2.5.5-hadoop3_第1张图片

三、修改hbase配置文件

在hbase-env.cmd添加如下配置

@rem JDK6 on Windows has a known bug for IPv6, use preferIPv4Stack unless JDK7.
@rem @rem See TestIPv6NIOServerSocketChannel.
set JAVA_HOME=D:/Java/jdk1.8.0_311

修改hbase-site.xml配置


      hbase.root.dir
        hdfs://localhost:9000/hbase
    
        
          hbase.tmp.dir  
          hdfs://localhost:9000/hbase/tmp  
      
	  
		hbase.zookeeper.property.dataDir
		D:/bigdata/hbase-2.5.5-hadoop3/data/tmp/zookeeper
	 
	 
        hbase.master.info.port
        16010
	
      
        hbase.cluster.distributed
        false
      
	 
		hbase.unsafe.stream.capability.enforce
		false
	  

四、启动hadoop

window10单机部署hbase-2.5.5-hadoop3_第2张图片

五、启动hbase

进入hbase里面的bin中执行start-hbase.cmd

start-hbase.cmd
D:\bigdata\hbase-2.5.5-hadoop3\bin>start-hbase.cmd
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/D:/bigdata/hbase-2.5.5-hadoop3/lib/log4j-slf4j-impl-2.17.2.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/D:/bigdata/hadoop/share/hadoop/common/lib/slf4j-reload4j-1.7.36.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [org.apache.logging.slf4j.Log4jLoggerFactory]

在浏览器中输入地址,http://localhost:16010/

window10单机部署hbase-2.5.5-hadoop3_第3张图片

这里就可以看到启动成功了。

你可能感兴趣的:(JAVA知识,大数据,hbase,数据库,大数据)