How to deploy hbase using docker

How to deploy hbase using docker

insert image description here

Standalone hbase, let’s talk about it first.

Install Docker


First enter docker -v, you don’t need to install it again if you have installed it before.

yum update #Update (enter y when asked)

yum install -y yum-utils device-mapper-persistent-data lvm2 #Installation dependency yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

yum install -y docker-ce #Install docker
 
systemctl start docker #Start docker

docker -v #View docker version 

insert image description here

Pull the image

docker pull harisekhon/hbase:1.3 

insert image description here

( Insert anti-crawling information ) Blogger CSDN address: https://wzlodq.blog.csdn.net/

run


Specify port 16010

docker run -d --name hbase -p 16010:16010 docker.io/harisekhon/hbase:1.3 

insert image description here

test


ip:16010/master-status, remember to open the port in the security group, for example:
http://wzlodq.cn:16010/master-status

insert image description here
insert image description here

This is the end of this article about using docker to deploy hbase. For more relevant content about docker deploying hbase, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of building hadoop and hbase cluster with docker
  • Detailed explanation of how to deploy and install the Chinese version of Redash in Docker
  • How to deploy zabbix_agent in docker

<<:  Detailed explanation of the text-fill-color property in CSS3

>>:  Some improvements in MySQL 8.0.24 Release Note

Recommend

How to write DROP TABLE in different databases

How to write DROP TABLE in different databases 1....

Webpack file packaging error exception

Before webpack packaging, we must ensure that the...

Docker installation of MySQL (8 and 5.7)

This article will introduce how to use Docker to ...

Causes and solutions for MySQL master-slave synchronization delay

For historical reasons, MySQL replication is base...

Datagrip2020 fails to download MySQL driver

If you cannot download it by clicking downloadlao...

In-depth study of MySQL multi-version concurrency control MVCC

MVCC MVCC (Multi-Version Concurrency Control) is ...

Solution to the failure of loading dynamic library when Linux program is running

Unable to load dynamic library under Linux When t...

Ant Design Blazor component library's routing reuse multi-tab function

Recently, there has been a growing demand for imp...

How to use Docker to build enterprise-level custom images

Preface Before leaving get off work, the author r...

JQuery implements hiding and displaying animation effects

This article shares the specific code of JQuery t...

Installation and use of Apache stress testing tools

1. Download Go to the Apache official website htt...

Vue project realizes login and registration effect

This article example shares the specific code of ...

How to display texture at the position of swipe in CocosCreator

Table of contents 1. Project requirements 2. Docu...