Docker install rabbitmq with management interface

  1. docker search rabbitmq-management, The version without management may not have a management interface, that is, it is impossible to log in to the background system through the web
    Insert picture description here2. docker pull rabbitmq-management, or it is written more clearly, for example docker pull docker.io/macintoshplus/rabbitmq-management:latest, the default label is also the latest version. You can also go to the docker hub to select the version you need to search, and you can pull it down after you find it.

  2. Execute docker run -d -p 15672:15672 -p 5672:5672 --name rabbitmq --hostname=rabbitmqhost 镜像IDcreate container

  3. Log in on the host http://192.168.20.128:15672, the user name and password are bothguest
    Insert picture description here

Guess you like

Origin blog.csdn.net/qq_41885819/article/details/112846405