Statistics
| Branch: | Tag: | Revision:

root / docs / scale / i-mq.rst @ 73ebcd68

History | View | Annotate | Download (970 Bytes)

1
.. _i-mq:
2

    
3
Synnefo
4
-------
5

    
6
:ref:`synnefo <i-synnefo>` ||
7
:ref:`ns <i-ns>` ||
8
:ref:`apt <i-apt>` ||
9
mq ||
10
:ref:`db <i-db>` ||
11
:ref:`gunicorn <i-gunicorn>` ||
12
:ref:`apache <i-apache>` ||
13
:ref:`astakos <i-astakos>` ||
14
:ref:`cms <i-cms>` ||
15
:ref:`pithos <i-pithos>` ||
16
:ref:`cyclades <i-cyclades>` ||
17
:ref:`kamaki <i-kamaki>` ||
18
:ref:`backends <i-backends>`
19

    
20
Message Queue Setup
21
+++++++++++++++++++
22

    
23
The following apply to ``mq`` node. For the rest of the sections we will refer to
24
its IP as ``mq.example.com`` .
25

    
26
.. code-block:: console
27

    
28
  # apt-get install rabbitmq-server
29

    
30

    
31
Add new administrator user named ``synnefo`` and gets full privileges on all
32
exchanges:
33

    
34
.. code-block:: console
35

    
36
   # rabbitmqctl add_user synnefo "examle_rabbitmq_passw0rd"
37
   # rabbitmqctl set_permissions synnefo ".*" ".*" ".*"
38
   # rabbitmqctl delete_user guest
39
   # rabbitmqctl set_user_tags synnefo administrator
40
   # /etc/init.d/rabbitmq-server restart
41

    
42

    
43
Test your Setup:
44
++++++++++++++++