From 2431835aebae2144ec59f7d997ee735482ed72c4 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Thu, 5 Jun 2014 21:01:21 +0200 Subject: [PATCH] Move service start and chkconfig calls together In the rest of the guide, we start a service and enable starting it at boot time at the same time - do it here as well. Change-Id: If53db8c139d06518bcd8243699db869d9806ce59 --- doc/install-guide/section_basics-queue.xml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/doc/install-guide/section_basics-queue.xml b/doc/install-guide/section_basics-queue.xml index 41e7e874ff..9d01c706bf 100644 --- a/doc/install-guide/section_basics-queue.xml +++ b/doc/install-guide/section_basics-queue.xml @@ -40,8 +40,10 @@ To configure the message broker service - Start the message broker service: - # service rabbitmq-server start + Start the message broker service and enable it to start when the + system boots: + # service rabbitmq-server start +# chkconfig rabbitmq-server on The message broker creates a default account that uses @@ -69,14 +71,6 @@ - - To finalize installation - - Configure the message broker service to start when the system - boots: - # chkconfig rabbitmq-server on - - Congratulations, now you are ready to install OpenStack services!