[install-guide] fix messaging configuration for Ceilometer
* use oslo_messaging_rabbit for Ceilometer configuration * use RabbitMQ user openstack Partially implements bp installguide-kilo. Change-Id: I5ce02ebd1f679e13e62655a0728aed943cbe0adc
This commit is contained in:
parent
a89be24303
commit
7ee47f21be
@ -218,15 +218,20 @@ connection = mongodb://ceilometer:<replaceable>CEILOMETER_DBPASS</replaceable>@<
|
||||
in the connection string in accordance with RFC2396.</para>
|
||||
</step>
|
||||
<step>
|
||||
<para>In the <literal>[DEFAULT]</literal> section, configure
|
||||
<application>RabbitMQ</application> message broker access:</para>
|
||||
<para>In the <literal>[DEFAULT]</literal> and
|
||||
<literal>[oslo_messaging_rabbit]</literal> sections, configure
|
||||
<application>RabbitMQ</application> message queue access:</para>
|
||||
<programlisting language="ini">[DEFAULT]
|
||||
...
|
||||
rpc_backend = rabbit
|
||||
|
||||
[oslo_messaging_rabbit]
|
||||
...
|
||||
rabbit_host = <replaceable>controller</replaceable>
|
||||
rabbit_userid = openstack
|
||||
rabbit_password = <replaceable>RABBIT_PASS</replaceable></programlisting>
|
||||
<para>Replace <replaceable>RABBIT_PASS</replaceable> with the password
|
||||
you chose for the <literal>guest</literal> account in
|
||||
<para>Replace <replaceable>RABBIT_PASS</replaceable> with the
|
||||
password you chose for the <literal>openstack</literal> account in
|
||||
<application>RabbitMQ</application>.</para>
|
||||
</step>
|
||||
<step>
|
||||
|
@ -20,9 +20,10 @@
|
||||
notification_driver = messagingv2
|
||||
rpc_backend = rabbit
|
||||
rabbit_host = <replaceable>controller</replaceable>
|
||||
rabbit_userid = openstack
|
||||
rabbit_password = <replaceable>RABBIT_PASS</replaceable></programlisting>
|
||||
<para>Replace <replaceable>RABBIT_PASS</replaceable> with the
|
||||
password you chose for the <literal>guest</literal> account in
|
||||
password you chose for the <literal>openstack</literal> account in
|
||||
<application>RabbitMQ</application>.</para>
|
||||
</step>
|
||||
<step>
|
||||
|
@ -30,14 +30,21 @@ telemetry_secret = <replaceable>TELEMETRY_SECRET</replaceable></programlisting>
|
||||
the telemetry secret you chose for the Telemetry module.</para>
|
||||
</step>
|
||||
<step os="centos;fedora;opensuse;rhel;sles;ubuntu">
|
||||
<para>In the <literal>[DEFAULT]</literal> section, configure
|
||||
<application>RabbitMQ</application> message broker access:</para>
|
||||
<para>In the <literal>[DEFAULT]</literal> and
|
||||
<literal>[oslo_messaging_rabbit]</literal> sections, configure
|
||||
<application>RabbitMQ</application> message queue access:</para>
|
||||
<programlisting language="ini">[DEFAULT]
|
||||
...
|
||||
rpc_backend = rabbit
|
||||
|
||||
[oslo_messaging_rabbit]
|
||||
...
|
||||
rabbit_host = <replaceable>controller</replaceable>
|
||||
rabbit_userid = openstack
|
||||
rabbit_password = <replaceable>RABBIT_PASS</replaceable></programlisting>
|
||||
<para>Replace <replaceable>RABBIT_PASS</replaceable> with the password
|
||||
you chose for the guest account in RabbitMQ.</para>
|
||||
<para>Replace <replaceable>RABBIT_PASS</replaceable> with the
|
||||
password you chose for the <literal>openstack</literal> account in
|
||||
<application>RabbitMQ</application>.</para>
|
||||
</step>
|
||||
<step>
|
||||
<para>In the <literal>[keystone_authtoken]</literal> section,
|
||||
|
@ -64,12 +64,12 @@ pipeline = authtoken cache healthcheck keystoneauth proxy-logging ceilometer pro
|
||||
...
|
||||
paste.filter_factory = ceilometermiddleware.swift:filter_factory
|
||||
control_exchange = swift
|
||||
url = rabbit://guest:<replaceable>RABBIT_PASS</replaceable>@<replaceable>controller></replaceable>:5672/
|
||||
url = rabbit://openstack:<replaceable>RABBIT_PASS</replaceable>@<replaceable>controller></replaceable>:5672/
|
||||
driver = messagingv2
|
||||
topic = notifications
|
||||
log_level = WARN</programlisting>
|
||||
<para>Replace <replaceable>RABBIT_PASS</replaceable> with the
|
||||
password you chose for the <literal>guest</literal> account in
|
||||
password you chose for the <literal>openstack</literal> account in
|
||||
<application>RabbitMQ</application>.</para>
|
||||
</step>
|
||||
</substeps>
|
||||
|
Loading…
Reference in New Issue
Block a user