- Introduction
- RabbitMQ is open source message broker software (sometimes called message-oriented middleware) that implements the Advanced Message Queuing Protocol (AMQP)
- The RabbitMQ server is written in the Erlang programming language and is built on the Open Telecom Platform framework for clustering and failover
- Client libraries to interface with the broker are available for all major programming languages
- Feature
- Robust messaging for applications
- Easy to use
- Runs on all major operating systems
- Supports a huge number of developer platforms
- Open source and commercially supported
- Installation
- sudo -c 'rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm'
- sudo -c 'yum install erlang'
- wget http://www.rabbitmq.com/releases/rabbitmq-server/v3.3.5/rabbitmq-server-3.3.5-1.noarch.rpm
- sudo rpm --import http://www.rabbitmq.com/rabbitmq-signing-key-public.asc
- sudo yum install rabbitmq-server-3.3.5-1.noarch.rpm
- sudo rabbitmq-plugins enable rabbitmq_management
- sudo service rabbitmq-server start
- http://localhost:15672/
- Reference
Friday, January 2, 2015
RabbitMQ
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.