Statistics
| Branch: | Tag: | Revision:

root / docs / scale / i-mq.rst @ 84809111

History | View | Annotate | Download (990 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:`qh <i-qh>` ||
15
:ref:`cms <i-cms>` ||
16
:ref:`pithos <i-pithos>` ||
17
:ref:`cyclades <i-cyclades>` ||
18
:ref:`kamaki <i-kamaki>` ||
19
:ref:`backends <i-backends>`
20

    
21
Message Queue Setup
22
+++++++++++++++++++
23

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

    
27
.. code-block:: console
28

    
29
  # apt-get install rabbitmq-server
30

    
31

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

    
35
.. code-block:: console
36

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

    
43

    
44
Test your Setup:
45
++++++++++++++++