Last active
May 19, 2020 06:02
-
-
Save rakibulinux/5aebb295910a5a0972f79d7100b8c570 to your computer and use it in GitHub Desktop.
How to install Latest RabbitMQ Server on Ubuntu 18.04 LTS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| echo 'deb http://www.rabbitmq.com/debian/ testing main' | sudo tee /etc/apt/sources.list.d/rabbitmq.list | |
| wget -O- https://www.rabbitmq.com/rabbitmq-release-signing-key.asc | sudo apt-key add - | |
| sudo apt update | |
| sudo apt -y install rabbitmq-server | |
| sudo systemctl status rabbitmq-server.service | |
| systemctl is-enabled rabbitmq-server.service | |
| sudo systemctl enable rabbitmq-server | |
| sudo rabbitmq-plugins enable rabbitmq_management | |
| ss -tunelp | grep 15672 | |
| sudo ufw allow proto tcp from any to any port 5672,15672 | |
| #Access it by opening the URL: http://localhost:15672 | Defult User & Password: guest/guest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment