Detailed tutorial on installing Hbase 2.3.5 on Vmware + Ubuntu18.04

Detailed tutorial on installing Hbase 2.3.5 on Vmware + Ubuntu18.04

Preface

The previous article installed Hadoop, and this article will install Hbase. Of course, if you just want to do a simple experiment, it is actually quite simple. It only takes about ten minutes to complete this experiment. 😄

insert image description here

Install Hbase2.3.5

Hbase 2.3.5 installation address: Hbase 2.3.5 Tsinghua mirror source address

insert image description here

After downloading, upload the file to VMware and move it to /usr/local

sudo mv hbase-2.3.5-bin.tar.gz /usr/local

Unzip hbase

tar -zxvf hbase-2.3.5-bin.tar.gz

Rename the unzipped hbase-2.3.5 to hbase for later configuration

sudo mv /usr/local/hbase-2.3.5 /usr/local/hbase

Configuring environment variables

Add the bin directory under hbase to the path. In this way, you don’t need to go to the /usr/local/hbase directory to start hbase, which greatly facilitates the use of hbase. The following part of the tutorial still switches to the /usr/local/hbase directory for operation, which helps beginners understand the operation process. Once you become proficient, you don't need to switch.
Edit ~/.bashrc file

vi ~/.bashrc

If PATH has not been introduced, please add the following content to the end of the ~/.bashrc file:

export PATH=$PATH:/usr/local/hbase/bin 

insert image description here

After editing is complete, execute the source command to make the above configuration take effect immediately in the current terminal. The command is as follows:

source ~/.bashrc

Add HBase permissions

cd /usr/local
sudo chown -R hadoop ./hbase

Test version

/usr/local/hbase/bin/hbase version

After the command is executed, the output information screenshot is as follows:

insert image description here

The above output message indicates that HBase has been installed successfully. Next, we will configure HBase in stand-alone mode.

Configure pseudo stand-alone mode configuration /usr/local/hbase/conf/hbase-env.sh. Configure the JAVA environment variables and add the configuration HBASE_MANAGES_ZK to true. Use the vi command to open and edit hbase-env.sh. The command is as follows:

vim /usr/local/hbase/conf/hbase-env.sh

Configure JAVA environment variables. The default installation directory of jdk is /usr/lib/jvm/java-1.7.0-openjdk, then JAVA _HOME = /usr/lib/jvm/java-7-openjdk-amd64, where java-1.7.0-openjdk is your jdk version; configure HBASE_MANAGES_ZK to true, which means that hbase manages zookeeper itself and does not require a separate zookeeper. These variables are already configured in hbase-env.sh. You just need to delete the # in front and modify the configuration content (# represents a comment):

export JAVA_HOME=/usr/lib/jvm/default-java
export HBASE_MANAGES_ZK=true

After adding, save and exit.

Configure /usr/local/hbase/conf/hbase-site.xml
Open and edit hbase-site.xml with the following command:

vim /usr/local/hbase/conf/hbase-site.xml

Before starting HBase, you need to set the property hbase.rootdir to specify the storage location of HBase data. If you do not set it, hbase.rootdir defaults to /tmp/hbase-${user.name}, which means that data will be lost every time the system is restarted. Here it is set to the hbase-tmp folder in the HBase installation directory (/usr/local/hbase/hbase-tmp), add the following configuration:

<configuration>
        <property>
                <name>hbase.rootdir</name>
                <value>file:///usr/local/hbase/hbase-tmp</value>
        </property>
</configuration>

Save and exit


Test command run

Switch to the HBase installation directory /usr/local/hbase and then start HBase. The command is as follows:

cd /usr/local/hbase
bin/start-hbase.sh
bin/hbase shell

After starting hbase, test simple table creation commands, data insertion commands, data deletion commands, etc.

Create a table

create 'student','Sname','Ssex','Sage','Sdept','course'

insert

put 'student','95001','course:math','80'

delete

delete 'student','95001','Ssex'

Query

get 'student','95001'

The running screenshots are as follows:

insert image description here

Summarize

The experiment of configuring a stand-alone version of Hbase is relatively simple and can be completed quickly, but learning about the big data ecosystem is not that simple. This is just a simple learning experiment in the basic introductory stage. For learning big data, you still need to maintain continuous learning! come on!

This is the end of this article about the detailed tutorial on installing Hbase 2.3.5 on Vmware + Ubuntu18.04. For more relevant content about installing Hbase 2.3.5 on Vmware + Ubuntu18.04, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of VMware12 using three virtual machines Ubuntu16.04 system to build hadoop-2.7.1+hbase-1.2.4 (fully distributed)
  • Ubuntu 16.04 image complete installation tutorial under VMware
  • VMware12.0 installation Ubuntu14.04 LTS tutorial
  • VMware Tools installation and configuration tutorial for Ubuntu 18.04
  • VMware Tools installation and configuration graphic tutorial for Ubuntu 16.04 64-bit

<<:  Zen HTML Elements Friends who use zen coding can collect it

>>:  Detailed example of reading speed of js objects

Recommend

Writing daily automatic backup of MySQL database using mysqldump in Centos7

1. Requirements: Database backup is particularly ...

Some notes on mysql self-join deduplication

Let me briefly explain the functional scenario: T...

How to ensure transaction characteristics of MySQL InnoDB?

Preface If someone asks you "What are the ch...

Example of using #include file in html

There are two files a.htm and b.htm. In the same d...

Vue.js front-end web page pop-up asynchronous behavior example analysis

Table of contents 1. Preface 2. Find two pop-up c...

Website design should pay attention to the sense of color hierarchy

Recently I have been saying that design needs to h...

Tutorial on building an FTP server in Ubuntu 16.04

Ubuntu 16.04 builds FTP server Install ftp Instal...

Things to note when migrating MySQL to 8.0 (summary)

Password Mode PDO::__construct(): The server requ...

Implementation steps for docker-compose to deploy etcd cluster

Table of contents Write docker-compose.yml Run do...

Vue implements DingTalk's attendance calendar

This article shares the specific code of Vue to i...

MySQL simple example of sorting Chinese characters by pinyin

If the field storing the name uses the GBK charac...

5 Ways to Clear or Delete Large File Contents in Linux

Sometimes, while working with files in the Linux ...