From f58a0b165e02bbc8a0a21c66f66eb8a1f6ea37f3 Mon Sep 17 00:00:00 2001 From: Andres Hermosilla Date: Thu, 3 Aug 2017 16:27:57 -0700 Subject: [PATCH] Added guide for rabbitmq --- rabbitmq.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 rabbitmq.md diff --git a/rabbitmq.md b/rabbitmq.md new file mode 100644 index 0000000..0ec3447 --- /dev/null +++ b/rabbitmq.md @@ -0,0 +1,18 @@ +# RabbitMQ + +```bash +# Export current config to a file +rabbitmqadmin -u admin -p test export rabbit.config + +# Show list of vhosts +rabbitmqadmin -u admin -p test -f long -d 3 list vhosts +``` + +- https://www.slideshare.net/michaelklishin/rabbitmq-operations +- http://looselycoupledlabs.com/2014/08/monitoring-rabbitmq/ +- http://jaredrobinson.com/Scaling_RabbitMQ/ +- https://www.slideshare.net/nahidupa/scaling-application-with-rabbitmq-44485159 +- https://www.cloudfoundry.org/scaling-real-time-apps-on-cloud-foundry-using-node-js-and-rabbitmq/ +- https://www.rabbitmq.com/management.html +- http://devops.datenkollektiv.de/creating-a-custom-rabbitmq-container-with-preconfigured-queues.html +- https://medium.com/@thomasdecaux/deploy-rabbitmq-with-docker-static-configuration-23ad39cdbf39 \ No newline at end of file