GithubHelp home page GithubHelp logo

masstransit.rabbitmq's Introduction

Installing RabbitMQ

Before we start creating our application, we will first need to spin up a RabbitMQ server, by making use of Docker. Given that Docker is installed, we’ll open a command-line terminal and use the docker run command to spin up our server:

docker run -it --rm --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3.13-management

  • --rm : This flag specifies that the container should be automatically removed when it stops running.
  • Port 5672 is the default port for AMQP communication (used by RabbitMQ clients).
  • Port 15672 is the default port for the RabbitMQ management web interface.
  • rabbitmq:3.13-management : This specifies the Docker image to use. In this case, it’s the official RabbitMQ image with the management plugin included, based on version 3.13.

In order for us to access the management UI, we open a browser window and navigate to http://localhost:15672/ using the default login of guest/guest.

http://localhost:5672/

https://hub.docker.com/_/rabbitmq/

https://code-maze.com/masstransit-rabbitmq-aspnetcore/

masstransit.rabbitmq's People

Contributors

phanjuy avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.