【Ubuntu】安装hbase

前提

需要安装java

安装 HBase

  1. 下载并解压 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
  1. 配置 HBase 环境变量:
export HBASE_HOME=/path/to/hbase-2.5.7
export PATH=$PATH:$HBASE_HOME/bin

启动 HBase

  1. 启动 HBase:
cd hbase-2.5.7/bin
./start-hbase.sh

关闭HBase

  1. 关闭HBase
cd hbase-2.5.7/bin
./stop-hbase.sh

使用 HBase Shell

  1. 打开终端(命令行界面)。
  2. 输入以下命令
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服务

  1. 修改hbase-site.xml,位于hbase-2.5.7/conf下,配置如下


<configuration>
  <property>
    <name>hbase.zookeeper.quorumname>
    <value>aaa.bbb.ccc.comvalue>
  property>
  <property>
    <name>hbase.zookeeper.property.clientPortname>
    <value>12345value>
  property>
  <property>
    <name>hbase.client.usernamename>
    <value>adminvalue>
  property>
  <property>
    <name>hbase.client.passwordname>
    <value>adminvalue>
  property>
configuration>
  1. 执行hbase shell

你可能感兴趣的:(linux,学习笔记,ubuntu,hbase,linux)