赞
踩
1、在单机模式中,要先修改一个文件:/usr/local/hbase/conf/hbase-site.xml
hbase-site.xml内容:
- <configuration>
- <property>
- <name>hbase.rootdir</name>
- <value>file:///usr/local/hbase/hbase-tmp</value>
- </property>
- </configuration>
保存运行
- start-hbase.sh
- hbase shell
报错
报错原因:可能是因为之前启动过hadoop,然后里面/usr/local/hbase/hbase-tmp有hbase.id不一致的原因导致的
解决办法:将之前的hbase-site.xml的内容修改为
- <configuration>
- <property>
- <name>hbase.rootdir</name>
- <value>file:///usr/local/hbase/hbase-tmp1</value>
- </property>
- </configuration>
成功运行
hbase基础命令
- #创建表:
- create '表名','字段1','字段n'
- #查看数据库中已创建的表
- list
- #添加数据
- put 'student','95011',Sname','Li'
- #查看数据
- get 'student','95011'
- #查看全部数据
- scan 'student
- #删除数据(删除学号为95001的所有Sname字段
- delete 'student','95001','Sname'
- #删除表:第一步,让表不可用,第二步,删除
- disable 'student'
- drop 'student'
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。