Eshoponcontainers: rabbitmq management console

Created on 19 Jul 2017  路  7Comments  路  Source: dotnet-architecture/eShopOnContainers

Not an Issue, however I need some pointers as how I can enable access to the RabbitMQ management console?
I guess I just have to open the management Port, but as I am somewhat of a rookie here I would appreciate to just get a pointer as how to open this up in the Debug build.

Close Requested enhancement

Most helpful comment

Yes, you need to do that. Agreed, this is a good point for the documentation.

All 7 comments

@robpahl You need to use an image with the management plugin enabled and also expose the default management API port. This is what worked for me (in docker-compose.yml):

  rabbitmq:
    image: rabbitmq:3-management
    ports:
      - "15672:15672"
      - "5672:5672"

@MarcinHoppe Works perfect, huge thanks for taking the time to share!

Happy to help.

@CESARDELATORRE Would it be good to include this tip in the documentation?

Yes, you need to do that. Agreed, this is a good point for the documentation.

Hi @MarcinHoppe
We have just added in Dev the rabbitmq image which includes the management plugin enabled.
The rabbitmq management service is published under port 15672.

Thx!

@ramonTC Looks good, thanks!

Done. Closing.

Was this page helpful?
0 / 5 - 0 ratings