Wiki

Clone wiki

GoraExplorer / HBase example data

GoraExplorer has an example HBase for the example connections/tables on the initial deploy.

Download and uncompress HBase 1.2.6, into your home at ~/hbase-1.2.6

Uncompress the file /hbase-data.tgz into the HBase instalation folder ~/hbase-1.2.6. It will create a directory called hbase-alfonso.

Copy the file ~/hbase-1.2.6/hbase-alfonso/hbase-site.xml to ~/hbase-1.2.6/conf and use it as a template, updating the config value of hbase.tmp.dir to the path hbase-alfonso.

Configure export HBASE_MANAGES_ZK=true in ~/hbase-1.2.6/conf/hbase-env.sh.

Start and stop the localhost HBase with:

#!bash


cd ~/hbase-1.2.6/bin
./start-hbase.sh
./stop-hbase.sh

Updated