diff --git a/doc/install-guide/section_ceilometer-controller.xml b/doc/install-guide/section_ceilometer-controller.xml
index da25d0fdce..0a689abb3a 100644
--- a/doc/install-guide/section_ceilometer-controller.xml
+++ b/doc/install-guide/section_ceilometer-controller.xml
@@ -255,15 +255,20 @@ connection = mongodb://ceilometer:CEILOMETER_DBPASS@<
in the connection string in accordance with RFC2396.
- In the [DEFAULT] section, configure
- RabbitMQ message broker access:
+ In the [DEFAULT] and
+ [oslo_messaging_rabbit] sections, configure
+ RabbitMQ message queue access:
[DEFAULT]
...
rpc_backend = rabbit
+
+[oslo_messaging_rabbit]
+...
rabbit_host = controller
+rabbit_userid = openstack
rabbit_password = RABBIT_PASS
- Replace RABBIT_PASS with the password
- you chose for the guest account in
+ Replace RABBIT_PASS with the
+ password you chose for the openstack account in
RabbitMQ.
diff --git a/doc/install-guide/section_ceilometer-glance.xml b/doc/install-guide/section_ceilometer-glance.xml
index e510c9585d..1aaaf1d0f0 100644
--- a/doc/install-guide/section_ceilometer-glance.xml
+++ b/doc/install-guide/section_ceilometer-glance.xml
@@ -20,9 +20,10 @@
notification_driver = messagingv2
rpc_backend = rabbit
rabbit_host = controller
+rabbit_userid = openstack
rabbit_password = RABBIT_PASS
Replace RABBIT_PASS with the
- password you chose for the guest account in
+ password you chose for the openstack account in
RabbitMQ.
diff --git a/doc/install-guide/section_ceilometer-nova.xml b/doc/install-guide/section_ceilometer-nova.xml
index c41d2e8ba6..f661879bc5 100644
--- a/doc/install-guide/section_ceilometer-nova.xml
+++ b/doc/install-guide/section_ceilometer-nova.xml
@@ -30,14 +30,21 @@ telemetry_secret = TELEMETRY_SECRET
the telemetry secret you chose for the Telemetry module.
- In the [DEFAULT] section, configure
- RabbitMQ message broker access:
+ In the [DEFAULT] and
+ [oslo_messaging_rabbit] sections, configure
+ RabbitMQ message queue access:
[DEFAULT]
...
+rpc_backend = rabbit
+
+[oslo_messaging_rabbit]
+...
rabbit_host = controller
+rabbit_userid = openstack
rabbit_password = RABBIT_PASS
- Replace RABBIT_PASS with the password
- you chose for the guest account in RabbitMQ.
+ Replace RABBIT_PASS with the
+ password you chose for the openstack account in
+ RabbitMQ.
In the [keystone_authtoken] section,
diff --git a/doc/install-guide/section_ceilometer-swift.xml b/doc/install-guide/section_ceilometer-swift.xml
index a3ce1e37b7..20dd6a27ea 100644
--- a/doc/install-guide/section_ceilometer-swift.xml
+++ b/doc/install-guide/section_ceilometer-swift.xml
@@ -69,12 +69,12 @@ pipeline = authtoken cache healthcheck keystoneauth proxy-logging ceilometer pro
...
paste.filter_factory = ceilometermiddleware.swift:filter_factory
control_exchange = swift
-url = rabbit://guest:RABBIT_PASS@controller>:5672/
+url = rabbit://openstack:RABBIT_PASS@controller>:5672/
driver = messagingv2
topic = notifications
log_level = WARN
Replace RABBIT_PASS with the
- password you chose for the guest account in
+ password you chose for the openstack account in
RabbitMQ.