Skip to content

Instantly share code, notes, and snippets.

@LinuxIntellect
Last active December 28, 2021 16:27
Show Gist options
  • Save LinuxIntellect/0b0b174062a89dffe32b9c22dca27046 to your computer and use it in GitHub Desktop.
Save LinuxIntellect/0b0b174062a89dffe32b9c22dca27046 to your computer and use it in GitHub Desktop.
I will do install RabbitMQ on Linux
# If you need to install rabbitMQ on your ubuntu then contact with me:
# Skype: zobaer.ahmed5
# BiP: +8801818264577
# Whatsapp: +8801818 264577
# Telegram: +8801818 264577
# Viber: +8801818264577
# Signal: +8801818264577
# Email: linuxintellect@gmail.com
# https://www.linkedin.com/in/linuxintellect
# Youtube Video:
############################################################################################################################
# **STEP-1: Installing Ruby**
sudo apt update
sudo apt install ruby-full
ruby --version
# **STEP-2: Installing Redis Server**
sudo apt update
sudo apt install redis.server
sudo systemctl status redis.server
# If you have an active UFW firewall, open both ports 5672 and 15672:
sudo ufw allow proto tcp from any to any port 5672,15672
# To be able to login on the network, create an admin user like below:
sudo rabbitmqctl add_user admin StrongPassword
sudo rabbitmqctl set_user_tags admin administrator
@LinuxIntellect
Copy link
Author

Screenshot from 2021-12-14 12-50-35
Screenshot from 2021-12-14 13-07-05
Screenshot from 2021-12-14 13-09-42
Screenshot from 2021-12-14 13-09-51
Screenshot from 2021-12-14 13-09-57
Screenshot from 2021-12-14 13-10-02
Screenshot from 2021-12-14 13-10-08
Screenshot from 2021-12-14 13-10-14

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment