启动:start-hbase.sh 停止:stop-hbase.sh 进入shell:hbase shell 状态:status 创建表:create 'tableName', 'colFam1' 查看表包含行数:list 'tableName' 列出所有:scan 'tableName' 插入:put 'tableName', 'rowName', 'colFam1:qualify', 'value' 查询:get 'tableName', 'rowName' 删除:delete 'table…