欢迎投稿

今日深度:

Hbase单机安装部署,hbase单机部署

Hbase单机安装部署,hbase单机部署


Hbase单机安装部署

http://blogxinxiucan.sh1.newtouch.com/2017/07/27/Hbase单机安装部署/

下载Hbase

Hbase官网下载地址

http://www.apache.org/dyn/closer.cgi/hbase/

解压

tar -zvxf hbase-0.94.27.tar.gz
cd hbase-0.94.27

配置

cd conf/
vi hbase-site.xml
<configuration>

  <property>
    <name>hbase.rootdir</name>
    <value>file:///usr/local/webserver/hbase-0.94.27/logs/site</value>
  </property>
  <property>
    <name>hbase.cluster.distributed</name>
    <value>true</value>
  </property>


</configuration>

启动hbase

./bin/start-hbase.sh

查看Hbase

浏览器访问:http://localhost:60010/

操作Hbase Shell

./bin/hbase shell

www.htsjk.Com true http://www.htsjk.com/hbase/27839.html NewsArticle Hbase单机安装部署,hbase单机部署 Hbase单机安装部署 http://blogxinxiucan.sh1.newtouch.com/2017/07/27/Hbase单机安装部署/ 下载Hbase Hbase官网下载地址 http://www.apache.org/dyn/closer.cgi/hbase/ 解压 tar -zvxf h...
相关文章
    暂无相关文章
评论暂时关闭