`

Hbase Standalone

 
阅读更多
Hbase Quick Start :http://hbase.apache.org/book.html#quickstart
引用
2.2.1. Standalone HBase
This is the default mode. Standalone mode is what is described in the Section 1.2, “Quick Start” section. In standalone mode, HBase does not use HDFS -- it uses the local filesystem instead -- and it runs all HBase daemons and a local ZooKeeper all up in the same JVM. Zookeeper binds to a well known port so clients may talk to HBase.

简言之:
Standalone  模式下是不需要hadoop的。

So,我将自己的安装过程祥诉一下:
JDK使用的是jdk1.6.0_34.
修改conf/hbase-site.xml,
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<configuration>
  <property>
    <name>hbase.rootdir</name>
    <value>file:///tmp/hbase</value>
  </property>
  <property>
    <name>hbase.zookeeper.property.dataDir</name>
    <value>/tmp/zookeeper</value>
  </property>
</configuration>


没动这个文件hbase-env.sh

然后就照官方文档 ./bin/start-hbase.sh 一切正常。
End

PS.
在另外一台机器上安装过程中出现class not found Exception: with
研究了很久,都没找到原因。后来换了一台机器,按照上面的安装路线,一切正常。
分享到:
评论

相关推荐

    HBase-Code-Samples:使用 HBase Standalone 和 PhoenixHBase 的一系列演示

    HBase-代码-示例在 HBase 上使用 HBase 和 Phoenix 的一系列演示使用 HBase 代码示例有四个包支持示例我倾向于从我的 IDE 运行代码,但您可以将这些包打包或从其他工具调用HBase 包HBaseEngine 调用多线程加载器。...

    java8看不到源码-docker-hbase-standalone:Docker自动构建提供独立的hbase0.98.10

    cogniteev/hbase-standalone 基本用法 docker run -d -p 2181:2181 -p 60000:60000 -p 60010:60010 -p 60020:60020 -p 60030:60030 cogniteev/hbase-standalone 在浏览器中打开 客户端配置 HBase 客户端必须使用 ...

    hbase_libJar包

    此外,还需要配置HBase的配置文件`hbase-site.xml`,设置诸如集群模式(standalone或distributed)、Zookeeper地址等关键参数。例如,如果你的HBase运行在分布式模式下,你需要指定`hbase.cluster.distributed`属性...

    apache_hbase_reference_guide(官网).pdf

    - **快速启动**,包括在独立模式(Standalone)下的快速启动指南。 - **配置文件**,解释了HBase中配置文件的位置和如何进行配置。 - **基本前提条件**,例如Java和Hadoop环境的安装。 - **运行模式**,描述了HBase...

    HbaseReferenceBook-Hbase参考指南英文版

    本书还会介绍HBase的运行模式,包括独立模式(Standalone)和分布式模式(Distributed),以及如何运行和验证HBase安装的成功。HBase的独立模式适用于开发和测试环境,而分布式模式则是生产环境的首选,它支持在多台...

    apache hbase reference guide pdf

    接着,指南会详细地描述HBase的运行模式,包括单机模式(Standalone)和分布式模式(Distributed),并提供检查和确认HBase安装是否成功的步骤。 随后,指南会介绍如何进行HBase的配置,包括默认配置和示例配置。这...

    hbase 完全使用手册

    接下来,手册讲解了 HBase 的两种运行模式:Standalone(单机模式)和 Distributed(分布式模式)。在单机模式下,HBase 可以在没有任何其他 Hadoop 组件的情况下运行,这对于学习和开发来说非常方便。而在分布式...

    hbase-apache离线官方文档

    7. HBase runmodes: Standalone and Distributed(HBase运行模式:单机模式和分布式模式) - HBase支持单机和分布式两种运行模式。文档将指导用户如何根据需要选择和配置正确的运行模式。 8. Running and ...

    HBase官网文档解读.pdf

    HBase提供了三种安装模式,分别是独立模式(Standalone)、伪分布式模式(Pseudo-Distributed)以及完全分布式模式(Full-Distributed)。 - 独立模式:是一种单节点部署方式,所有的进程都运行在一台机器上,通常...

    apache_hbase_reference_guide-3.0.0-SNAPSHOT

    1. Getting Started 部分通常介绍如何开始使用 HBase,包括安装、配置和基础运行,如 Standalone 模式的快速启动示例。 2. Apache HBase Configuration 部分介绍了 HBase 的配置文件,包括配置文件的构成、基本要求...

    在hadoop-3.1.2上安装hbase-2.2.1.pdf

    关于分布式安装,请浏览:http://hbase.apache.org/book/standalone_dist.html#distributed,关于HBase使用外置的ZooKeeper配置,请浏览:http://hbase.apache.org/book/zookeeper.html。所有在线的文档,均会出现在...

    hbase详解,apache_hbase_reference_guide

    - HBase运行模式:包括独立模式(Standalone)和分布式模式。 - 配置文件:对hbase-site.xml、regionservers等配置文件的详细解读。 - HBase配置:包括默认配置和示例配置,以及如何进行动态配置。 - 安装确认:确保...

    hbase官方指导文档

    用户可以从Apache的官方网站下载HBase并根据自己的需要选择安装在单机模式(Standalone)或分布式模式(Distributed)。安装HBase前需要确保Java环境已经安装,并且最好有一个正在运行的Hadoop环境。文档中的...

    apache_hbase_reference_guide.pdf

    1. 运行模式:HBase支持Standalone和Distributed两种运行模式,用户可以根据需要选择。 2. Shell操作:HBase提供了命令行工具HBase Shell,用户可以通过命令行进行表的创建、数据的插入、查询、修改和删除等操作。 ...

    apache hbase reference guide

    - **Quick Start - Standalone HBase**(快速入门 - 单机模式的HBase): - 配置HBase环境:设置环境变量、配置文件等。 - 启动单机模式下的HBase集群。 - 使用HBase Shell进行基本操作,如创建表、插入数据、...

    HBase单机环境搭建(超细)

    - **Standalone 模式**:在这种模式下,所有的 HBase 守护进程(如 HMaster 和 HRegionServer)都在同一个 JVM 实例中运行。这种方式主要用于开发测试环境,以便快速搭建 HBase 环境。 - **伪集群模式(Pseudo-...

    apache_hbase_reference_guide_1.1.2

    Quickstart will get you up and running on a single-node, standalone instance of HBase, followed by a pseudo-distributed single-machine instance, and finally a fully-distributed cluster.

    Aapache_hbase_reference_guide

    在文档中提到了HBase的运行模式,包括独立模式(Standalone)和分布式模式(Distributed)。独立模式是一种非集群模式,它不提供高可用性,也不具备分布式集群的所有优点,但它可以用于开发和测试环境。分布式模式是...

Global site tag (gtag.js) - Google Analytics