Prerequisites: Docker is already installed 1. Find the image (there are 2 ways) ①Log in to the rabbitmq official website to find the docker image and select the tag of the image you want https://www.rabbitmq.com/download.html https://hub.docker.com/_/rabbitmq If you need to access the web management page, select the tag management ps: The one with alpine is built with the smallest Linux image, and the smallest size can be 5M. Beginners are not recommended to do so. In addition, Alpine Linux uses musl. The DNS service implemented by musl will not use the search and domain configurations in the resolv.conf file. You need to pay attention when performing service discovery through DNS. , with -management is a web console ② Use docker search to search directly. The default download tag is latest (the web management page cannot be opened) [testhadoop@sz-145-centos101 ~]$ sudo docker search rabbitmq NAME DESCRIPTION STARS OFFICIAL AUTOMATED rabbitmq RabbitMQ is an open source multi-protocol ... 2691 [OK] bitnami/rabbitmq Bitnami Docker Image for RabbitMQ 30 [OK] tutum/rabbitmq Base docker image to run a RabbitMQ server 19 frodenas/rabbitmq A Docker Image for RabbitMQ 12 [OK] kbudde/rabbitmq-exporter rabbitmq_exporter for prometheus 11 [OK] arm32v7/rabbitmq RabbitMQ is an open source multi-protocol ... 7 cyrilix/rabbitmq-mqtt RabbitMQ MQTT Adapter 7 [OK] gonkulatorlabs/rabbitmq DEPRECATED: See maryville/rabbitmq 5 [OK] aweber/rabbitmq-autocluster RabbitMQ with the Autocluster Plugin 4 pivotalrabbitmq/rabbitmq-autocluster RabbitMQ with the rabbitmq-autocluster plugin pivotalrabbitmq/rabbitmq-server-buildenv Image used to build and test RabbitMQ serv... 3 authentise/rabbitmq A RabbitMQ image that will run a bash script... 2 [OK] deadtrickster/rabbitmq_prometheus RabbitMQ + Prometheus RabbitMQ Exporter pl... 2 henrylv206/rabbitmq-autocluster RabbitMQ Cluster 2 [OK] riftbit/rabbitmq3 RabbitMQ 3.x Container based on Alpine Lin... 1 ps: If you log in as a normal user, you need sudo, otherwise an error will be prompted
2. Download the image (sometimes the network problem times out, just try a few more times. I chose the tag that can access the web management interface) sudo docker pull rabbitmq:management 3. Create a container and run it (15672 is the port of the management interface, 5672 is the port of the service. Here, set the username and password of the management system to admin admin) docker run -dit --name Myrabbitmq -e RABBITMQ_DEFAULT_USER=admin -e RABBITMQ_DEFAULT_PASS=admin -p 15672:15672 -p 5672:5672 rabbitmq:management This is the end of this article about deploying RabbitMQ environment with docker. For more information about deploying RabbitMQ environment with docker, please search 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:
|
<<: Solution to the CSS height collapse problem
>>: Solutions for high traffic websites
Table of contents 1. Basic Examples 2. Computed p...
This article shares the specific code of JavaScri...
Table of contents 1. What is DOM 2. Select elemen...
Preface The requirement implemented in this artic...
Performance of union all in MySQL 5.6 Part 1:MySQ...
Table of contents The basic principle of MySQL ma...
Result:Implementation Code html <nav class=&qu...
1. Download mysql-5.7.21-windowx64.zip from the o...
Problem Description When filter attribute is used...
This article shares the tutorial of MySql install...
As a Vue user, it's time to expand React. Fro...
1. First, let's review the relevant knowledge...
question The code has no prompt: Many non-front-e...
First, let’s take an example: There is a type fie...
Preface The previous article installed Hadoop, an...