Add the command to start and enable RabbitMQ

Change-Id: Ibffe37cd32ce07385e193eeacbc8e0ba0d83fa47
Closes-Bug: #1547449
This commit is contained in:
KATO Tomoyuki 2016-02-20 07:47:48 +09:00
parent b156c56580
commit 297d1025fc
1 changed files with 13 additions and 1 deletions

View File

@ -176,7 +176,19 @@ that all nodes have the same Erlang cookie file.
# chown rabbitmq:rabbitmq /var/lib/rabbitmq/.erlang.cookie
# chmod 400 /var/lib/rabbitmq/.erlang.cookie
#. Start RabbitMQ on all nodes and verify that the nodes are running:
#. Start the message queue service on all nodes and configure it to start
when the system boots.
On Ubuntu, it is configured by default.
On CentOS, RHEL, openSUSE, and SLES:
.. code-block:: console
# systemctl enable rabbitmq-server.service
# systemctl start rabbitmq-server.service
#. Verify that the nodes are running:
.. code-block:: console