installation.rst 881 B

12345678910111213141516171819202122232425262728293031
  1. ==============
  2. Installation
  3. ==============
  4. Installing RabbitMQ
  5. ===================
  6. See `Installing RabbitMQ`_ over at RabbitMQ's website. For Mac OS X
  7. see `Installing RabbitMQ on OS X`_.
  8. .. _`Installing RabbitMQ`: http://www.rabbitmq.com/install.html
  9. .. _`Installing RabbitMQ on OS X`:
  10. http://playtype.net/past/2008/10/9/installing_rabbitmq_on_osx/
  11. Setting up RabbitMQ
  12. -------------------
  13. To use celery we need to create a RabbitMQ user, a virtual host and
  14. allow that user access to that virtual host::
  15. $ rabbitmqctl add_user myuser mypassword
  16. $ rabbitmqctl add_vhost myvhost
  17. $ rabbitmqctl set_permissions -p myvhost myuser "" ".*" ".*"
  18. See the RabbitMQ `Admin Guide`_ for more information about `access control`_.
  19. .. _`Admin Guide`: http://www.rabbitmq.com/admin-guide.html
  20. .. _`access control`: http://www.rabbitmq.com/admin-guide.html#access-control