How to install rabbitmq-server and erlang in Linux


How to install rabbitmq-server and erlang in Linux

How to install rabbitmq-server and erlang in Amazon Linux 2, full tutorial to setup and manage rabbitmq channels and queues.

Update the system

sudo yum update -y

Install Erlang

sudo yum install https://github.com/rabbitmq/erlang-rpm/releases/download/v23.3.4.11/erlang-23.3.4.11-1.el7.x86_64.rpm -y

Install RabbitMQ

sudo yum install https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.9.13/rabbitmq-server-3.9.13-1.el7.noarch.rpm -y

Start RabbitMQ Server

The server is not started as a daemon by default when the RabbitMQ server package is installed. To start the daemon by default when the system boots, as an administrator run

chkconfig rabbitmq-server on

then

sudo rabbitmq-server -detached

After installation, restart service

sudo systemctl restart rabbitmq-server

Managing the Service

To manage the service you can use the following functions:

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

Install the management plugin

By default, Rabbitmq is a client plugin that has not been installed, and it needs to be installed.

sudo rabbitmq-plugins enable rabbitmq_management

User management

Description: Rabbitmq has a default account and password is: guest, by default, you can only access it under localhost this unit, so you need to add a remote login user.

Add new users

sudo rabbitmqctl add_user admin admin

Set user assignment operation permissions

sudo rabbitmqctl set_user_tags admin administrator

Add resource permissions to users

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

Change password

sudo rabbitmqctl change_password username newpassword

Delete user

sudo rabbitmqctl delete_user username

View All User List

sudo rabbitmqctl list_users

Diagnostic rabbitmq

Checks if the local node is running and CLI tools can successfully authenticate with it

sudo rabbitmq-diagnostics ping

Prints enabled components (applications), TCP listeners, memory usage breakdown, alarms

sudo rabbitmq-diagnostics status

Prints cluster membership information

sudo rabbitmq-diagnostics cluster_status

Prints effective node configuration

sudo rabbitmq-diagnostics environment

Cannot start after installation

Try:

sudo lsof -i :25672
sudo kill <PID>
sudo rabbitmq-server -detached

Where is the process ID that is occupying port 25672

Uninstall Rabbitmq and Erlang

Uninstall Erlang

yum list | grep erlang
yum -y remove erlang-*
rm -rf /usr/lib64/erlang

Uninstall Rabbitmq

yum list | grep rabbitmq
yum -y remove rabbitmq-server.noarch

find / -name rabbit*

Other resources:

Newsletter


Related Posts

A Week in the Life of an Invoice Wrangler: Navigating Ridesharing and Food Delivery Chaos

As an app founder in the ridesharing and food delivery industry, I found myself knee-deep in invoice reports from companies like Bolt, Uber, Glovo, and Bolt Food

Free HTML templates list for Startups

Free HTML templates list for startup. A complete list with free resources to build your next startup's website and gain the traction to the sky.

Deal with client requests in SaaS

How to deal with client requests in Saas which are seeing only their interests, not the product interest.

The first client of LoyalXpert is not answering anymore

Trying to implement LoyalXpert app, I lost my first customer, he's not answering anymore

Experiments with Tiktok Ads

Recently tried out TikTok ads for the first time and here are some of my learnings and challenges

People don’t care about you, until they know you care about them.

People don’t care about you, until they know you care about them. The same happens in business, you need to take care of your clients.

The One Word That Can Ruin Your SaaS Business Anyone

As a SaaS founder, you probably know how important it is to have a clear and specific target market for your product.

How I got my digital certificate connected it with ANAF

How I got my digital certificate from certSIGN and connected it with ANAF

The Ultimate List of Company Directories to Boost Your Networking

Discover a wide range of company directories to boost your business's visibility and connect with potential clients.

Discover the Best Free AI Art Tools for Your Next Masterpiece

Explore a curated collection of the finest free AI art tools, designed to help you bring your artistic vision to life.