1. Environmental Preparation
2. Start the installation docker pull rabbitmq:management Note: Why not install The container is running and the corresponding port is open docker run -di --name=mycloud_rabbitmq -p 5671:5671 -p 5672:5672 -p 4369:4369 -p 15671:15671 -p 15672:15672 -p 25672:25672 rabbitmq:management After mapping, you can directly access your management backend through the external network http://yourdomain:15672/ 2.1 Solve the problem that the management backend cannot be opened after installation Friends have installed docker ps on it and see that rabbitmq has started normally and the port is fine, but you still cannot open the management backend webpage. This is because the image you pulled was rabbitmq. docker pull rabbitmq The management backend web page is not enabled by default, you need to enable it yourself Then execute docker run -di --name=mycloud_rabbitmq -p 5671:5671 -p 5672:5672 -p 4369:4369 -p 15671:15671 -p 15672:15672 -p 25672:25672 rabbitmq Then execute docker ps docker exec -it image ID /bin/bash rabbitmq-plugins enable rabbitmq_management After that, you can visit the management backend website. This is the end of this article about installing rabbitmq in docker and being unable to enter the management page. For more relevant content about installing rabbitmq in docker, 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:
|
<<: HTML Basics: The basic structure of HTML
>>: Detailed explanation of Vue's live broadcast function
Table of contents Preface Related Materials Vue p...
If you don't have a Linux system, please refe...
This article shares with you how to use JavaScrip...
This is a collection of commonly used but easily ...
Contemporary web visual design has gone through th...
You know that without it, the browser will use qui...
1》Be good at web design 2》Know how to design web p...
Click here to return to the 123WORDPRESS.COM HTML ...
Table of contents 1. Basic conditions for databas...
A problem occurred when configuring a cluster. Or...
I plan to realize a series of sticky note walls. ...
Preface I looked at the previously published arti...
Code example: public class JDBCDemo3 { public sta...
Copy code The code is as follows: <BODY> //...
In some scenarios, we want to assign multiple IPs...