RabbitMQ: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
 
(4 intermediate revisions by the same user not shown)
Line 6: Line 6:
df -h
df -h


ls /usr/lib/rabbitmq/lib/
systemctl start rabbitmq-server
systemctl start rabbitmq-server
systemctl status rabbitmq-server
systemctl status rabbitmq-server
Line 12: Line 13:
</source>
</source>


  ssh -L 15672:localhost:15672 pi@mq.chorke.org
  ssh -L 15672:localhost:15672 user@mq.chorke.org
  http://localhost:15672/
  http://localhost:15672/
  username: guest
  username: guest
Line 18: Line 19:


==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]
* [https://raspberrypi.stackexchange.com/questions/80021 RabbitMQ Server Installation]
* [https://raspberrypi.stackexchange.com/questions/80021 RabbitMQ Server Installation]
* [https://stackoverflow.com/questions/29936948 SSH Multiple Ports Forward]
* [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]

Latest revision as of 19:57, 15 April 2020

apt install erlang logrotate
apt -f install

apt install rabbitmq-server/stable
df -h

ls /usr/lib/rabbitmq/lib/
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