HBase学习

HBase是一个开源的,分布式的,多版本的,面向列的存储模型。

HBase学习_第1张图片

官网: http://hbase.apache.org/

安装(伪分布模式)

注:alias dfs="$HADOOP_HOME/bin/hdfs dfs"

axel -n 10 http://mirror.bit.edu.cn/apache/hbase/stable/hbase-1.2.5-bin.tar.gz
tar zxvf hbase-1.2.5-bin.tar.gz
cd hbase-1.2.5
dfs -mkdir /hbase

配置hbase-site.xml


  
    hbase.rootdir
    hdfs://localhost:9000/hbase
  
  
    dfs.replication
    1
  

开启服务前需要开启HDFS
运行服务:./bin/start-hbase.sh
进入shell:./bin/hbase shell

你可能感兴趣的:(HBase学习)