Installing Apache HBase: A Step-by-Step Guide for Linux
Learn how to install Apache HBase, the scalable NoSQL database built on Hadoop, on a Linux system. This guide provides a step-by-step walkthrough for a standalone HBase installation, including prerequisites and key configurations.
Installing Apache HBase
Apache HBase is a scalable, NoSQL database built on Hadoop. This guide outlines the installation process on a Linux system. You will need to have Java and Hadoop installed before installing HBase. HBase can be installed in various modes (standalone, pseudo-distributed, fully-distributed). This guide shows a standalone installation. The specific steps and commands might vary depending on your Linux distribution and Hadoop version.
Prerequisites
Before installing HBase, make sure you have:
- Java Development Kit (JDK) installed and configured correctly.
- Hadoop installed and running.
Downloading and Extracting HBase
- Download the appropriate HBase package from the Apache HBase downloads page (https://hbase.apache.org/downloads.html). Choose the version that matches your Hadoop version.
- Extract the downloaded archive. For a
.tar.gz
file, use: - Move the extracted directory to your preferred installation location (e.g., `/usr/local/hbase`).
Extracting HBase
sudo tar -xzvf /path/to/hbase-*.tar.gz
Configuring HBase (Standalone Mode)
- Set JAVA_HOME: Edit the `hbase-env.sh` file (located in the `conf` directory) to set the `JAVA_HOME` environment variable to point to your JDK installation.
- Configure hbase-site.xml: Edit the
hbase-site.xml
file to specify the directory for HBase data and ZooKeeper data. For example:
Setting JAVA_HOME
export JAVA_HOME=/path/to/your/jdk
hbase-site.xml Configuration
<configuration>
<property>
<name>hbase.rootdir</name>
<value>file:///path/to/hbase/data</value>
</property>
<property>
<name>hbase.zookeeper.property.dataDir</name>
<value>/path/to/zookeeper/data</value>
</property>
</configuration>
Starting HBase
Navigate to the HBase `bin` directory and run:
Starting HBase
./start-hbase.sh
To verify HBase is running, open a new terminal and run `hbase shell`. You should see the HBase shell prompt if the installation was successful.