1.安装单机版hbase1.25
下载hbase(http://apache.fayea.com/hbase/)
2.解压hbase
Tar -zxvf ***.tar.gz
Mv *** /opt
3.设置环境变量
Vim /etc/profile
添加export PATH=$PATH:/opt/hbase-1.2.5/bin
使环境变量生效source /etc/profile
4.修改hbase-site.xml文件
5.启动hbase
Start-hbase.sh
6.进入命令行模式
Hbase shell
7.hbase操作
建表语句:
create ‘test’,’cf’
查看表的信息
Describe ‘test’
插入数据
Put ‘test’ , ’row1’ , ’cf:a’ , ’value1’
读出数据
Scan ‘test’
计算一个列的行数
Count ‘test’ , ‘cf:a’
获取某一行的数据
Get ‘test’ , ‘row2’
更新数据=插入数据
删除数据
下线表Disable ‘test’
删除表Drop ‘test’