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>
成功运行
文章来源:https://www.toymoban.com/news/detail-705957.html
hbase基础命令文章来源地址https://www.toymoban.com/news/detail-705957.html
#创建表:
create '表名','字段1','字段n'
#查看数据库中已创建的表
list
#添加数据
put 'student','95011',Sname','Li'
#查看数据
get 'student','95011'
#查看全部数据
scan 'student
#删除数据(删除学号为95001的所有Sname字段
delete 'student','95001','Sname'
#删除表:第一步,让表不可用,第二步,删除
disable 'student'
drop 'student'
到了这里,关于Hbase解决ERROR: KeeperErrorCode = ConnectionLoss for /hbase/master报错的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!