HBase学习

作者: 予早 | 来源:发表于2017-04-02 14:29 被阅读0次

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


    官网: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

    <configuration>
      <property>
        <name>hbase.rootdir</name>
        <value>hdfs://localhost:9000/hbase</value>
      </property>
      <property>
        <name>dfs.replication</name>
        <value>1</value>
      </property>
    </configuration>
    

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

    相关文章

      网友评论

        本文标题:HBase学习

        本文链接:https://www.haomeiwen.com/subject/ffrgottx.html