broker-installation.rst 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. .. _broker-installation:
  2. =====================
  3. Broker Installation
  4. =====================
  5. .. contents::
  6. :local:
  7. .. _installing-rabbitmq:
  8. Installing RabbitMQ
  9. ===================
  10. See `Installing RabbitMQ`_ over at RabbitMQ's website. For Mac OS X
  11. see `Installing RabbitMQ on OS X`_.
  12. .. _`Installing RabbitMQ`: http://www.rabbitmq.com/install.html
  13. .. note::
  14. If you're getting `nodedown` errors after installing and using
  15. :program:`rabbitmqctl` then this blog post can help you identify
  16. the source of the problem:
  17. http://somic.org/2009/02/19/on-rabbitmqctl-and-badrpcnodedown/
  18. .. _rabbitmq-configuration:
  19. Setting up RabbitMQ
  20. ===================
  21. To use celery we need to create a RabbitMQ user, a virtual host and
  22. allow that user access to that virtual host::
  23. $ rabbitmqctl add_user myuser mypassword
  24. $ rabbitmqctl add_vhost myvhost
  25. $ rabbitmqctl set_permissions -p myvhost myuser ".*" ".*" ".*"
  26. See the RabbitMQ `Admin Guide`_ for more information about `access control`_.
  27. .. _`Admin Guide`: http://www.rabbitmq.com/admin-guide.html
  28. .. _`access control`: http://www.rabbitmq.com/admin-guide.html#access-control
  29. .. _rabbitmq-osx-installation:
  30. Installing RabbitMQ on OS X
  31. ===========================
  32. The easiest way to install RabbitMQ on Snow Leopard is using `Homebrew`_; the new
  33. and shiny package management system for OS X.
  34. In this example we'll install Homebrew into :file:`/lol`, but you can
  35. choose whichever destination, even in your home directory if you want, as one of
  36. the strengths of Homebrew is that it's relocatable.
  37. Homebrew is actually a `git`_ repository, so to install Homebrew, you first need to
  38. install git. Download and install from the disk image at
  39. http://code.google.com/p/git-osx-installer/downloads/list?can=3
  40. When git is installed you can finally clone the repository, storing it at the
  41. :file:`/lol` location::
  42. $ git clone git://github.com/mxcl/homebrew /lol
  43. Brew comes with a simple utility called :program:`brew`, used to install, remove and
  44. query packages. To use it you first have to add it to :envvar:`PATH`, by
  45. adding the following line to the end of your :file:`~/.profile`::
  46. export PATH="/lol/bin:/lol/sbin:$PATH"
  47. Save your profile and reload it::
  48. $ source ~/.profile
  49. Finally, we can install rabbitmq using :program:`brew`::
  50. $ brew install rabbitmq
  51. .. _`Homebrew`: http://github.com/mxcl/homebrew/
  52. .. _`git`: http://git-scm.org
  53. .. _rabbitmq-osx-system-hostname:
  54. Configuring the system host name
  55. --------------------------------
  56. If you're using a DHCP server that is giving you a random host name, you need
  57. to permanently configure the host name. This is because RabbitMQ uses the host name
  58. to communicate with nodes.
  59. Use the :program:`scutil` command to permanently set your host name::
  60. sudo scutil --set HostName myhost.local
  61. Then add that host name to :file:`/etc/hosts` so it's possible to resolve it
  62. back into an IP address::
  63. 127.0.0.1 localhost myhost myhost.local
  64. If you start the rabbitmq server, your rabbit node should now be `rabbit@myhost`,
  65. as verified by :program:`rabbitmqctl`::
  66. $ sudo rabbitmqctl status
  67. Status of node rabbit@myhost ...
  68. [{running_applications,[{rabbit,"RabbitMQ","1.7.1"},
  69. {mnesia,"MNESIA CXC 138 12","4.4.12"},
  70. {os_mon,"CPO CXC 138 46","2.2.4"},
  71. {sasl,"SASL CXC 138 11","2.1.8"},
  72. {stdlib,"ERTS CXC 138 10","1.16.4"},
  73. {kernel,"ERTS CXC 138 10","2.13.4"}]},
  74. {nodes,[rabbit@myhost]},
  75. {running_nodes,[rabbit@myhost]}]
  76. ...done.
  77. This is especially important if your DHCP server gives you a host name
  78. starting with an IP address, (e.g. `23.10.112.31.comcast.net`), because
  79. then RabbitMQ will try to use `rabbit@23`, which is an illegal host name.
  80. .. _rabbitmq-osx-start-stop:
  81. Starting/Stopping the RabbitMQ server
  82. -------------------------------------
  83. To start the server::
  84. $ sudo rabbitmq-server
  85. you can also run it in the background by adding the :option:`-detached` option
  86. (note: only one dash)::
  87. $ sudo rabbitmq-server -detached
  88. Never use :program:`kill` to stop the RabbitMQ server, but rather use the
  89. :program:`rabbitmqctl` command::
  90. $ sudo rabbitmqctl stop
  91. When the server is running, you can continue reading `Setting up RabbitMQ`_.