RabbitMQ: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 18: Line 18:


==References==
==References==
* [https://onlinehelp.coveo.com/en/ces/7.0/administrator/changing_the_rabbitmq_administrator_password.htm Changing the Administrator Password]
* [https://www.techrepublic.com/article/how-to-use-local-and-remote-ssh-port-forwarding/ Local & Remote SSH port forwarding]
* [https://www.techrepublic.com/article/how-to-use-local-and-remote-ssh-port-forwarding/ Local & Remote SSH port forwarding]
* [https://www.iotshaman.com/blog/content/how-to-install-rabbitmq-on-a-raspberry-pi Install RabbitMQ on a Raspberry Pi]
* [https://www.iotshaman.com/blog/content/how-to-install-rabbitmq-on-a-raspberry-pi Install RabbitMQ on a Raspberry Pi]

Revision as of 09:24, 19 March 2020

apt install erlang logrotate
apt -f install

apt install rabbitmq-server/stable
df -h

systemctl start rabbitmq-server
systemctl status rabbitmq-server
systemctl enable rabbitmq-server
rabbitmq-plugins enable rabbitmq_management
ssh -L 15672:localhost:15672 [email protected]
http://localhost:15672/
username: guest
password: guest

References