Open source messaging middleware
RabbitMQ

© Lead Image © Tatiana Tushyna, 123RF.com
Connect multiple protocols and servers together on your IoT projects.
For Internet of Things (IoT) projects, there are a lot of different ways that sensors, devices, and client interfaces can be connected together. For many projects, using a simple Message Queue Telemetry Transport (MQTT) broker is all that you need. However, if you're trying to merge and build IoT projects that use both MQTT and Advanced Message Queue Protocol (AMQP), or you require a REST API, then you should take a look at RabbitMQ.
RabbitMQ [1] is an open source middleware solution that natively uses AMQP communications, but it has a good selection of plugins to support features like MQTT, MQTT WebSockets, HTTP REST API, and server-to-server communications (Figure 1).

In this article, I will set up a RabbitMQ server, and I will look at some of the differences between MQTT and AMQP messaging. Finally, an example of an Arduino MQTT message will be presented as both an MQTT and an AMQP item in a Node-RED dashboard.
Getting Started Locally
RabbitMQ can be installed on Windows, Linux, and macOS systems, and there are also some cloud-based offerings. For small systems, lower-end hardware like a Raspberry Pi can be used. Complete RabbitMQ installation instructions are available online [2]. To install and run RabbitMQ on an Ubuntu system, enter:
sudo apt-get update sudo apt-get install rabbitmq-server sudo service rabbitmq-server start
The next step is to add some plugins. For my project, I loaded the MQTT and web administration plugins:
sudo rabbitmq-plugins enable rabbitmq_mqtt sudo rabbitmq-plugins enable rabbitmq-management
The rabbitmqctl
command-line tool allows you to configure and review the RabbitMQ server. To add a user (admin1) with a password (admin1) that has config, write, and read rights for management and administrator access, enter:
sudo rabbitmqctl add_user admin1 admin1 sudo rabbitmqctl set_permissions -p / admin1 ".*" ".*" ".*" sudo rabbitmqctl set_user_tags admin1 management administrator
After you've defined an administrative user, the RabbitMQ web management plugin can be accessed at http://ip_address:15672 (Figure 2).

The RabbitMQ web management tool offers an overview of the present system load, connections, exchanges, and queues.
The RabbitMQ web management tool is excellent for small manual changes. However if you are looking at a doing a large number of additions or changes, then rabbitmqadmin
, you can use the command-line management tool. Install the tool by entering:
# Get the cli and make it available to use. wget http://127.0.0.1:15672/cli/rabbitmqadmin sudo chmod +x rabbitmqadmin
Comparing MQTT and AMQP
It's useful to comment about some of the differences between MQTT and AMQP.
MQTT is a lightweight publish- and subscribe-based messaging protocol that works well with lower-end hardware and limited bandwidth. For Arduino-type applications where you only need to pass some sensor data, MQTT is an excellent fit.
AMQP has more overhead than MQTT, because it is a more advanced protocol that includes message orientation, queuing, routing, reliability, and security. Presently, there are no mainstream AMQP Arduino libraries, but numerous programming options for Raspberry Pi, Linux, Windows, and macOS systems exist. An AMQP IoT example would be to send sensor failures and alarms to dedicated maintenance and alarm queues.
MQTT and AMQP Queues
One of the biggest differences in queues is that MQTT queues are designed to show you the last available message, where as AMQP will store multiple messages in a queue.
A published MQTT message contains a message body, a retain flag, and a quality of service (QoS) value.
An AMQP message can be published with added properties, such as time stamp, type of message, and expiration information. AMQP messages also support the addition of custom header values. Listing 1 is a Python publish example that defines the message type to be "Pi Sensor"
, and it includes custom headers for status and alarm state.
Listing 1
Python AMQP Publish Example
01 #!/usr/bin/env python 02 import pika 03 04 node = "192.168.0.121" 05 user = "pete" 06 pwd = "pete" 07 08 # Connect to a remote AMQP server with a username/password 09 credentials = pika.PlainCredentials(user, pwd) 10 connection = pika.BlockingConnection(pika.ConnectionParameters(node, 11 5672, '/', credentials)) 12 channel = connection.channel() 13 14 # Create a queue if it doesn't already exist 15 channel.queue_declare(queue='Rasp_1',durable=True) 16 17 # Define the properties and publish a message 18 props = pika.BasicProperties( 19 headers= {'status': 'Good Quality',"alarm":"HI"}, 20 type ="Pi Sensor") 21 channel.basic_publish(exchange='', 22 routing_key='Rasp_1',body='99.5', properties = props) 23 24 connection.close()
The results from the Listing 1 example can be examined using the Queue | Get Message option in the RabbitMQ web management interface (Figure 3).

Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
News
-
The 14" Pinebook Pro Linux Laptop is Shipping
After a considerable delay, the 14" version of the Pinebook Pro laptop is, once again, available for purchase.
-
OpenMandriva Lx ROME Technical Preview Released
OpenMandriva’s rolling release distribution technical preview has been released for testing purposes and adds some of the latest/greatest software into the mix.
-
Linux Mint 21 is Now Available
The latest iteration of Linux Mint, codenamed Vanessa, has been released with a new upgrade tool and other fantastic features.
-
Firefox Adds Long-Anticipated Feature
Firefox 103 has arrived and it now includes a feature users have long awaited…sort of.
-
System76 Refreshes Their Popular Oryx Pro Laptop with a New CPU
The System76 Oryx Pro laptop has been relaunched with a 12th Gen CPU and more powerful graphics options.
-
Elive Has Released a New Beta
The Elive team is proud to announce the latest beta version (3.8.30) of its Enlightenment-centric Linux distribution.
-
Rocky Linux 9 Has Arrived
The latest iteration of Rocky Linux is now available and includes a host of new features and support for new architecture.
-
Slimbook Executive Linux Ultrabook Upgrading Their CPUs
The Spanish-based company, Slimbook, has made available their next generation Slimbook Executive Linux ultrabooks with a 12th Gen Intel Alder Lake CPU.
-
Fedora Linux is Coming to the Raspberry Pi 4
Thanks to significant work in the upstream, the upcoming release of Fedora 37 will introduce support for the Raspberry Pi 4.
-
New Linux Ultrabook from TUXEDO Computers
TUXEDO Computers has released a new 15" Ultrabook running Linux.