首页 > 其他分享 >hbase安装(2)

hbase安装(2)

时间:2022-10-12 23:12:48浏览次数:39  
标签:bin -- sh atguigu hbase hadoop102 安装

1)hbase-env.sh 修改内容,可以添加到最后:

export HBASE_MANAGES_ZK=false

2)hbase-site.xml 修改内容:

<?xml version="1.0"?>

<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>

 

<configuration>

 

  <property>

    <name>hbase.zookeeper.quorum</name>

    <value>hadoop102,hadoop103,hadoop104</value>     <description>The directory shared by RegionServers.

    </description>

  </property>

 

<!--    <property>-->

<!--        <name>hbase.zookeeper.property.dataDir</name>-->

<!--        <value>/export/zookeeper</value>-->

<!--        <description> 记得修改ZK的配置文件 -->

<!--            ZK的信息不能保存到临时文件夹-->

<!--        </description>-->

<!--    </property>-->

 

 

  <property>

    <name>hbase.rootdir</name>

    <value>hdfs://hadoop102:8020/hbase</value>

    <description>The directory shared by RegionServers.

    </description>

  </property>

 

 

  <property>

    <name>hbase.cluster.distributed</name>

    <value>true</value>

  </property>

 

</configuration>

3)regionservers

hadoop102 hadoop103 hadoop104

4)解决 HBase 和 Hadoop 的 log4j 兼容性问题,修改 HBase 的 jar 包,使用 Hadoop 的 jar 包

[atguigu@hadoop102 hbase]$ mv /opt/module/hbase/lib/client-facingthirdparty/slf4j-reload4j-1.7.33.jar /opt/module/hbase/lib/clientfacing-thirdparty/slf4j-reload4j-1.7.33.jar.bak

 

HBase 远程发送到其他集群

[atguigu@hadoop102 module]$ xsync hbase/

 

HBase 服务的启动

1)单点启动

[atguigu@hadoop102 hbase]$ bin/hbase-daemon.sh start master

[atguigu@hadoop102 hbase]$ bin/hbase-daemon.sh start regionserver

2)群启

[atguigu@hadoop102 hbase]$ bin/start-hbase.sh

3)对应的停止服务

[atguigu@hadoop102 hbase]$ bin/stop-hbase.sh

标签:bin,--,sh,atguigu,hbase,hadoop102,安装
From: https://www.cnblogs.com/headl-voi/p/16786467.html

相关文章

  • zookeeper安装
    1)安装前准备(1)安装JDK(2)拷贝apache-zookeeper-3.5.7-bin.tar.gz安装包到Linux系统下(3)解压到指定目录[atguigu@hadoop102software]$tar-zxvfapache-zookeeper-3.......
  • zookeeper集群安装
    1)集群规划在hadoop102、hadoop103和hadoop104三个节点上都部署Zookeeper。思考:如果是10台服务器,需要部署多少台Zookeeper?2)解压安装(1)在hadoop102解压Zookeeper......
  • 帝国CMS:如何对文章进行页面排版(二)插件安装?
    上一篇写到环境的安装,特别是tidy依赖的安装,在服务器上设置好后,接下来就需要对插件进行安装,安装步骤如下:1.上传插件至 /e/extend/下;  2.执行插件安装,执行路径:http:/......
  • 帝国CMS:如何对文章进行页面排版(一)环境安装?
    排版对于做网站十分重要,如何给帝国CMS系统里的数据进行排版?插件:htmlbeautify环境:Centos7.6+PHP5.6+帝国7.5安装步骤:1.配置环境,安装tidy扩展;  1.1 安装依赖......
  • 安装apache之playbook
    ----name:installhttpdhosts:allvars:dir:/usr/local/srcinstall_dir:/apps/httpdhttpd_ver:httpd-2.4.54httpd_url:https://mirrors.tuna.tsi......
  • 微软winget安装软件
    打开cmd输入winget指令及参数wingetsearch软件名称wingetshow软件名称安装软件wingetinstall软件名称wingetwingetinstall软件名称--rainbow//彩色进......
  • 机器学习环境安装
    Mac下安装机器学习环境1.安装Anaconda:建立python应用环境访问https://repo.anaconda.com/archive/,选择.sh后缀pkg是可视化安装,sh是命令行方式安装。在terminal中执行......
  • Linux安装nginx
    1.进入nginx官网下载页面,下载Linux所需的压缩包文件。http://nginx.org/en/download.html   2.在安装nginx之前需要安装pcre,gcc,openssl,zlib。因为nginx依赖这......
  • Microsoft Visual Studio 2010 Service Pack 1 安装失败:系统无法找到指定的对象
    MicrosoftVisualStudio2010ServicePack1安装失败:系统无法找到指定的对象vs2010学习版安装错误在此计算机中仅有部分MicrosoftVisualStudio2010产品已升级到Ser......
  • React:环境安装
    环境安装可以使用node-v查看node.js版本号。$npmconfigsetregistryhttps://r.npm.taobao.org//配过镜像的可以不用再配,也可以不配置直接用npm$cnpminstall-......