0% found this document useful (0 votes)
19 views2 pages

Installasi Rabbit MQ

This document provides instructions for installing and configuring RabbitMQ on a system. It outlines downloading the necessary keys and packages, enabling and starting the RabbitMQ server service, adding an administrative user, enabling plugins, and providing the URL and credentials for accessing the RabbitMQ management interface.

Uploaded by

Dedew Lestari
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views2 pages

Installasi Rabbit MQ

This document provides instructions for installing and configuring RabbitMQ on a system. It outlines downloading the necessary keys and packages, enabling and starting the RabbitMQ server service, adding an administrative user, enabling plugins, and providing the URL and credentials for accessing the RabbitMQ management interface.

Uploaded by

Dedew Lestari
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Installasi Rabbit MQ

# wget -O - "https://packagecloud.io/rabbitmq/rabbitmq-server/gpgkey" |
sudo apt-key add -

# 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 -

# apt-get update
# apt-get install rabbitmq-server

# systemctl enable rabbitmq-server


# systemctl start rabbitmq-server
# systemctl stop rabbitmq-server

# rabbitmqctl add_user admin 123456


# rabbitmqctl set_user_tags admin administrator
# rabbitmqctl set_permissions -p / admin ".*" ".*" ".*"

# rabbitmq-plugins enable rabbitmq_management


# rabbitmq-plugins enable rabbitmq_mqtt
# rabbitmq-plugins enable rabbitmq_stomp
# rabbitmq-plugins enable rabbitmq_web_stomp_examples
# rabbitmq-plugins enable rabbitmq_web_mqtt_examples

http://localhost:15672

username : admin
password : 123456

You might also like