diff --git a/doc/install-guide/section_basics-queue.xml b/doc/install-guide/section_basics-queue.xml index c577255707..0057472756 100644 --- a/doc/install-guide/section_basics-queue.xml +++ b/doc/install-guide/section_basics-queue.xml @@ -80,21 +80,38 @@ of each OpenStack service that uses the message broker. - - - If you are running RabbitMQ version 3.3.0 or higher, you - need to allow remote connection of the guest user as well. - Edit the /etc/rabbitmq/rabbitmq.config file - and add or uncomment this line: - {loopback_users, []} - - Restart the message broker service: - On SLES: - # service rabbitmq-server restart - On openSUSE: - # systemctl restart rabbitmq-server.service + + For RabbitMQ version 3.3.0 or newer, you must enable remote + access for the guest account. + + + Check the RabbitMQ version: + # rabbitmqctl status | grep rabbit +Status of node 'rabbit@controller' ... + {running_applications,[{rabbit,"RabbitMQ","3.4.2"}, + + + If necessary, edit the + /etc/rabbitmq/rabbitmq.config + file and configure loopback_users to + reference an empty list: + [{rabbit, [{loopback_users, []}]}]. + + Contents of the original file might vary depending on the + source of the RabbitMQ package. In some cases, you might need + to create this file. + + + + Restart the message broker service: + # service rabbitmq-server restart + # systemctl restart rabbitmq-server.service + On SLES: + # service rabbitmq-server restart + On openSUSE: + # systemctl restart rabbitmq-server.service + + - Congratulations, you are now ready to install OpenStack - services!