RabbitMQ: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
Line 18: Line 18:


==References==
==References==
* [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]
* [https://raspberrypi.stackexchange.com/questions/80021 RabbitMQ Server Installation]
* [https://raspberrypi.stackexchange.com/questions/80021 RabbitMQ Server Installation]
* [https://www.rabbitmq.com/#community RabbitMQ Community]
* [https://www.rabbitmq.com/#community RabbitMQ Community]
* [https://www.ssh.com/ssh/tunneling/example SSH Port Forwarding]
* [https://www.ssh.com/ssh/tunneling/example SSH Port Forwarding]

Revision as of 09:16, 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