DebianLinuxTutorials

How To Install RabbitMQ on Debian 11

Install RabbitMQ on Debian 11

In this tutorial, we will show you how to install RabbitMQ on Debian 11. For those of you who didn’t know, RabbitMQ is a free, open-source, and one of the most popular message broker software. It supports multiple messaging protocols and uses plugins to communicate with popular messaging solutions like MQTT. RabbitMQ supports multiple messaging protocols. RabbitMQ can be easily deployed in distributed and federated configurations to meet high-scale, high-availability requirements.

This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo‘ to the commands to get root privileges. I will show you through the step-by-step installation of the RabbitMQ on a Debian 11 (Bullseye).

Prerequisites

  • A server running one of the following operating systems: Debian 11 (Bullseye).
  • It’s recommended that you use a fresh OS install to prevent any potential issues.
  • A non-root sudo user or access to the root user. We recommend acting as a non-root sudo user, however, as you can harm your system if you’re not careful when acting as the root.

Install RabbitMQ on Debian 11 Bullseye

Step 1. Before we install any software, it’s important to make sure your system is up to date by running the following apt commands in the terminal:

sudo apt update
sudo apt upgrade
sudo apt install gnupg2 curl wget apt-transport-https software-properties-common

Step 2. Installing Erlang.

RabbitMQ requires Erlang, you can simply download the Erlang repository package from its official website and install it on your Debian system:

wget https://packages.erlang-solutions.com/erlang/debian/pool/esl-erlang_23.1.5-1~debian~stretch_amd64.deb
dpkg -i esl-erlang_23.1.5-1~debian~stretch_amd64.deb

Then, update the Apt cache and install Erlang packages:

sudo apt install -f
sudo apt update
sudo apt install erlang erlang-nox

Step 3. Installing RabbitMQ on Debian 11.

By default, the RabbitMQ is not available in the Debian 11 base repository. So you will need to add the RabbitMQ repository to your Debian system:

add-apt-repository 'deb http://www.rabbitmq.com/debian/ testing main'
wget -O- https://www.rabbitmq.com/rabbitmq-release-signing-key.asc | apt-key add -

Next, update your system package list and install Erlang using the following command below:

sudo apt install rabbitmq-server

RabbitMQ has been installed on the Debian system. Use the following commands to enable the RabbitMQ service on your system. Also, start the RabbitMQ service:

sudo systemctl start rabbitmq-server
sudo systemctl enable rabbitmq-server
sudo systemctl status rabbitmq-server

Step 4. Create Admin User on RabbitMQ.

Now we create your own administrator account on the RabbitMQ server using the following commands:

rabbitmqctl add_user admin password
rabbitmqctl set_user_tags admin administrator

Next, set proper permission with the following command:

rabbitmqctl set_permissions -p / admin ".*" ".*" ".*"

After that, enable the RabbitMQ management console using the following command:

rabbitmq-plugins enable rabbitmq_management

Step 5. Accessing RabbitMQ Web Interface.

Once successfully installed, open your web browser and access the RabbitMQ web console using the URL http://your-server-ip-address:15672/. You should see the RabbitMQ login  page:

Install RabbitMQ on Debian 11 Bullseye

Congratulations! You have successfully installed RabbitMQ. Thanks for using this tutorial for installing the latest version of the RabbitMQ on Debian 11 Bullseye. For additional help or useful information, we recommend you check the official RabbitMQ website.

VPS Manage Service Offer
If you don’t have time to do all of this stuff, or if this is not your area of expertise, we offer a service to do “VPS Manage Service Offer”, starting from $10 (Paypal payment). Please contact us to get the best deal!

r00t

r00t is an experienced Linux enthusiast and technical writer with a passion for open-source software. With years of hands-on experience in various Linux distributions, r00t has developed a deep understanding of the Linux ecosystem and its powerful tools. He holds certifications in SCE and has contributed to several open-source projects. r00t is dedicated to sharing her knowledge and expertise through well-researched and informative articles, helping others navigate the world of Linux with confidence.
Back to top button