Docker deployment RabbitMQ container implementation process analysis

Docker deployment RabbitMQ container implementation process analysis

1. Pull the image

First, execute the following command to download the image to your local computer:

Note: rabbitmq is an official image and does not come with a console. If you want to install an image with a console, you need to include a tag when pulling the image, for example: rabbitmq:management.

docker pull rabbitmq:management

2. Create and mount a local data directory

mkdir -p /home/rabbitmq/data

3. Start the container

(1) Execute the following command to instantiate the RabbitMQ service:

docker run --name rabbitmq -d -p 15672:15672 -p 5672:5672 -v /home/rabbitmq/data:/data -e RABBITMQ_DEFAULT_USER=ling -e RABBITMQ_DEFAULT_PASS=123456 rabbitmq:management

Parameter Description:

--name: Specify the container name
-d: Run in the background
-p: Map the mq port number to the local
-v: mount /home/rabbitmq/data to the /data directory in the container
-e RABBITMQ_DEFAULT_USER=ling: Set the user name to ling
-e RABBITMQ_DEFAULT_PASS=123456: Set the password to 123456

(2) Then execute the docker ps command to check that the RabbitMQ container has indeed run successfully:

Notice:

docker stop xxxxxx (stop running container)
docker rm xxxxxx (delete container)

3. Access test

Use a browser to access http://IP:15672. If you see the following page, it means RabbitMQ has been started successfully.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed operations of building RabbitMq's common cluster and mirror cluster with Docker
  • A detailed introduction to deploying RabbitMQ environment with docker
  • Two problems encountered when deploying rabbitmq with Docker
  • The problem of being unable to enter the management page when installing rabbitmq in docker
  • How to quickly install RabbitMQ in Docker
  • Docker installs and runs the rabbitmq example code
  • How to deploy rabbitmq cluster with docker
  • How to build a rabbitmq cluster environment with docker
  • Docker installation and configuration steps for RabbitMQ

<<:  Ideas and codes for realizing magnifying glass effect in js

>>:  MySQL master-slave synchronization, implementation principle of transaction rollback

Recommend

The process of installing MySQL 8.0.26 on CentOS7

1. First, download the corresponding database fro...

jQuery implements breathing carousel

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

How to position the header at the top using CSS sticky layout

Application scenarios: One of the new requirement...

How to smoothly go online after MySQL table partitioning

Table of contents Purpose of the table For exampl...

Installation tutorial of mysql 8.0.11 compressed version under win10

This article shares the installation tutorial of ...

If I change a property randomly in Vue data, will the view be updated?

Interviewer: Have you read the source code of Vue...

WeChat applet learning wxs usage tutorial

What is wxs? wxs (WeiXin Script) is a scripting l...

How to import js configuration file on Vue server

Table of contents background accomplish Supplemen...

Introduction to the use of HTML element noscript

noscript definition and usage The noscript elemen...

How to forget the root password in Mysql8.0.13 under Windows 10 system

1. First stop the mysql service As an administrat...

How to install and configure GitLab on Ubuntu 20.04

introduce GitLab CE or Community Edition is an op...

Why Seconds_Behind_Master is still 0 when MySQL synchronization delay occurs

Table of contents Problem Description Principle A...

Div nested html without iframe

Recently, when doing homework, I needed to nest a ...

Take you to understand MySQL character set settings in 5 minutes

Table of contents 1. Content Overview 2. Concepts...