How to Start HBase in Single Node Mode

Introduction

HBase is a highly reliable, high-performance, column-oriented distributed storage system suitable for storing massive amounts of data and enabling real-time read/write operations. This guide will walk you through setting up HBase in single-node mode.

Process Overview

The table below outlines the steps to start HBase on a single node:

Step Action
1 Donwload HBase package
2 Extract the package
3 Conifgure HBase
4 Start HBase
5 Verify the startup

Detailed Steps

Step 1: Download HBase

Download the HBase installation package from the official Apache HBase web site.

Step 2: Extract the Package

Once downloaded, extract the package to your desired installation directory, for example /opt/hbase:

tar -xzf hbase-*.tar.gz -C /opt/hbase

Step 3: Configure HBase

Navigate to the HBase installation directory and edit the conf/hbase-site.xml file. Add the following configuration:

<configuration>
  <property>
    <name>hbase.rootdir</name>
    <value>file:///opt/hbase/data</value>
  </property>
  <property>
    <name>hbase.zookeeper.property.dataDir</name>
    <value>/opt/hbase/zookeeper</value>
  </property>
</configuration>

Step 4: Start HBase

Run the following command to start HBase:

./bin/start-hbase.sh

Step 5: Verify the Startup

Open a web browser and navigate to http://localhost:16010. If the HBase web interface appears, HBase has started successfully.

Summary

You have successfully set up HBase in single-node mode. Adjust the configuration paths and settings according to your environment. If you have any questions, feel free to ask. Good luck with your HBase journey!

Tags: HBase single node Setup Tutorial Big Data

Posted on Sat, 15 Aug 2026 16:59:03 +0000 by Amanda1998