使用docker搭建单机版本测试

  1. 安装
docker run -d -h myhbase \
    --name gps180_hbase2 \
    -v /d/docker/hbase-data:/hbase-data \
    -p 12181:2181 \
    -p 8080:8080 \
    -p 18085:8085 \
    -p 9090:9090 \
    -p 9095:9095 \
    -p 16000:16000 \
    -p 16010:16010 \
    -p 16020:16020 \
    -p 16201:16201 \
    -p 16301:16301 \
    harisekhon/hbase
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  1. 进入容器
docker exec -it hbase2 /bin/bash
1
  1. 执行hbase命令
hbase shell

create 't_hposition','gps','gpsst'
1
2
3
  1. 设置vhost
sudo vi /etc/hosts
添加 docker IP  hostname
即:192.168.1.**  myhbase
1
2
3