Hello hbase Posted on 2017-03-15 | Edited on 2018-12-16 | In db Download Configure1234567891011sudo curl -O http://mirrors.hust.edu.cn/apache/hbase/1.3.0/hbase-1.3.0-bin.tar.gzsudo tar -xzvf hbase-1.3.0-bin.tar.gzsudo vim conf/hbase-env.sh > export JAVA_HOME=/usr/lib/jdk1.8.0_121 > export HBASE_CLASSPATH=/usr/lib/hbase-1.3.0/libsudo bash bin/start-hbase.shmore logs/hbase-root-master-raspberrypi.log Have a try123456789101112131415161718192021bin/hbase shellcreate 'PageViews', 'info'listdescibe 'PageViews'put 'PageViews', 'rowkey1', 'info:page', '/mypage'put 'PageViews', 'rowkey1', 'info:count', '7'get 'PageViews', 'rowkey1'put 'PageViews', 'rowkey2', 'info:page', '/myotherpage'put 'PageViews', 'srowkey2', 'info:page', '/myotherpage'scan 'PageViews', {STARTROW=>'r', ENDROW=>'s'}scan 'PageViews', {STARTROW=>'r'}