【Ubuntu】安装hbase
前提
需要安装java
安装 HBase
- 下载并解压 HBase 安装包:
wget https://dlcdn.apache.org/hbase/2.5.7/hbase-2.5.7-bin.tar.gz
tar -zxvf hbase-2.5.7-bin.tar.gz
- 配置 HBase 环境变量:
export HBASE_HOME=/path/to/hbase-2.5.7
export PATH=$PATH:$HBASE_HOME/bin
启动 HBase
- 启动 HBase:
cd hbase-2.5.7/bin
./start-hbase.sh
关闭HBase
- 关闭HBase
cd hbase-2.5.7/bin
./stop-hbase.sh
使用 HBase Shell
- 打开终端(命令行界面)。
- 输入以下命令
hbase shell
基础查询和修改
一旦进入 HBase Shell,可以执行各种查询和修改操作。以下是一些基本的查询和修改命令示例:
- 创建表:
create 'my_table', 'column_family'
- 插入数据:
put 'my_table', 'row1', 'column_family:column1', 'value1'
- 获取数据:
get 'my_table', 'row1'
- 扫描表:
scan 'my_table'
- 删除数据:
delete 'my_table', 'row1', 'column_family:column1'
- 删除表:
disable 'my_table'
drop 'my_table'
如何连接远程hbase服务
- 修改
hbase-site.xml
,位于hbase-2.5.7/conf
下,配置如下
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<configuration>
<property>
<name>hbase.zookeeper.quorum</name>
<value>aaa.bbb.ccc.com:12345</value>
</property>
<property>
<name>hbase.client.username</name>
<value>admin</value>
</property>
<property>
<name>hbase.client.password</name>
<value>admin</value>
</property>
</configuration>
- 执行
hbase shell