RabbitMQ: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
Line 24: Line 24:
* [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]
* [https://www.rabbitmq.com/getstarted.html RabbitMQ Tutorials]

Revision as of 19:08, 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