HBASE stand-alone installation

Stand-alone mode installation

Features: Hadoop is not dependent on the HDFS, configuring can use, advantage is easy to test. The downside is distributed not have the ability to store data.

   

Installation configuration

1. install JDK and configuration environment variable

2. Upload decompression Hbase installation package

3. Modify Hbase profile (modify the installation directory under the conf / HBase-the site.xml )

Configuration example:

<property>

<name>hbase.rootdir</name>

<value>file:///home/software/hbase/tmp</value>

</property>

This is the configuration directory hbase store data, if not configured, the default is placed under Linux / tmp directory.

4. Start hbase, go to the bin directory

Execute: sh start-hbase.sh

You can then see if there HMaster process by jps, if proved successful start hbase

5. In the bin directory execute:

./hbase shell into the shell client operating hbase

   

 

   

   

   

   

Guess you like

Origin www.cnblogs.com/shuzhiwei/p/11037947.html