Install RabbitMQ on Windows

  Download rabbitmq at: https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_6/rabbitmq-server-3.6.6.exe http://erlang.org/download/otp_win64_19.2.exe Install Config Manangement Open cmd go to this path: C:\Program Files (x86)\RabbitMQ Server\rabbitmq_server-3.3.4\sbin input rabbitmq-plugins.bat enable rabbitmq_management and press enter key rabbitmq-service.bat stop rabbitmq-service.bat install rabbitmq-service.bat start Start use: http://localhost:15672 User: guest Password: guest Crate User: Add a new/fresh user, say user ‘test’ and password ‘test’ rabbitmqctl add_user test testContinue reading “Install RabbitMQ on Windows”

Get started with RabbitMQ on Android (Android Studio)

By: LOVISA JOHANSSON (cloudamqp) This guide explains how to create a simple chat application in Android using Android Studio and RabbitMQ. Everyone that has the application will be able to send and receive messages from all other users that are using the same application. If you are using Eclipse, check out this blog post instead. InContinue reading “Get started with RabbitMQ on Android (Android Studio)”

Getting Started With RabbitMQ in .net

By: Simon Dixon’s Blog In the previous two examples I built a simple .net application to demonstrate first two sections the RabbitMQ getting started guide in .net. In this post I’ll be looking at the third. Download the Source 3.) Publish/Subscribe The original article (in Java) is here:http://www.rabbitmq.com/tutorials/tutorial-three-java.html I’m going to take a slightly different approachContinue reading “Getting Started With RabbitMQ in .net”

Installing RabbitMQ on Ubuntu

By: MONKEY HACKS   By default, RabbitMQ packages are included in Ubuntu and Debian Linux distributions. The problem is, they are horribly outdated. You are far better off downloading the package online and installing it yourself. Installing RabbitMQ sudo -i sudo echo “deb http://www.rabbitmq.com/debian testing main” >> /etc/apt/sources.list After the repository is added, we will addContinue reading “Installing RabbitMQ on Ubuntu”