Giter Site home page Giter Site logo

rabbit-hello's Introduction

RabbitMQ Hello World

This is not a code sample in the traditional sense that it isn't really designed to teach you much. The code in send.go and receive.go is taken almost line-for-line from the RabbitMQ Tutorials in their documentation. We have modified the address so it points to a default docker-machine IP. To figure out our own docker-machine IP, use:

docker-machine ip default (or replace default with the name of your Docker machine).

Next, you can fire up a RabbitMQ Docker machine so you don't have to clutter your machine with a complicated install. To run RabbitMQ, use the following command:

docker run -d --hostname my-rabbit --name some-rabbit -p 8080:15672 -p 4369:4369 -p 5672:5672 rabbitmq:3-management

This creates a docker container named some-rabbit. According to the docs from RabbitMQ, you are likely to run into odd issues if you don't name your containers something specific.

Before you run the code samples, make sure your local Go workspace has a copy of the amqp dependency:

go get github.com/streadway/amqp

Once docker is running, you can use the following command to send a message via RabbitMQ:

go run send.go

and to receive a message:

go run receive.go

rabbit-hello's People

Contributors

autodidaddict 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.