Quick Rabbit MQ development setup in docker

  1. Download Rabbit MQ docker image from docker community
  1. Start Rabbit MQ first time using the following command
    • docker run -d –hostname rabbitmq-node1 –name rabbitmq-local -p 8080:15672 rabbitmq:3-management
  1. There on use the following command: docker start rabbitmq-local
  1. Docker application logs will look like following
  1. Rabbit MQ management server will start and mapped to the localhost:8080 port
    • note: if there is a port conflict, you can replace 8080 with any other available port in step 2
    • the default login is with user id guest & password guest
Login Page
Add basic queues to get started
provide queue name and hit “Add queue”
Queues will be visible under All Queues section

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *