530f6bfb8c
- change notification_driver option to use messagingv2. *.openstack.common.* is pre-icehouse option. - add note to configure swift metrics using new ceilometermiddleware - update telemetry get_started guide: - generalise supported functions - fix notification agent and collector service purpose Closes-Bug: #1425713 Co-Authored-By: Matt Kassawara <mkassawara@gmail.com> backport: juno Change-Id: I90dff1b5c2a7dd2943cfa7ff25bb63c08eb7986d
41 lines
2.1 KiB
XML
41 lines
2.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<section xmlns="http://docbook.org/ns/docbook"
|
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
version="5.0"
|
|
xml:id="ceilometer-glance">
|
|
<title>Configure the Image Service</title>
|
|
<para>To retrieve image-oriented events and samples, configure
|
|
the Image Service to send notifications to the message bus.
|
|
Perform these steps on the controller node.</para>
|
|
<procedure>
|
|
<para>Edit the <filename>/etc/glance/glance-api.conf</filename>
|
|
and <filename>/etc/glance/glance-registry.conf</filename> files and
|
|
complete the following actions:</para>
|
|
<step>
|
|
<para>In the <literal>[DEFAULT]</literal> section, configure
|
|
notifications and RabbitMQ message broker access:</para>
|
|
<programlisting language="ini">[DEFAULT]
|
|
...
|
|
notification_driver = messagingv2
|
|
rpc_backend = rabbit
|
|
rabbit_host = <replaceable>controller</replaceable>
|
|
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
|
|
<application>RabbitMQ</application>.</para>
|
|
</step>
|
|
<step>
|
|
<para>Restart the Image Service:</para>
|
|
<screen os="ubuntu;debian"><prompt>#</prompt> <userinput>service glance-registry restart</userinput>
|
|
<prompt>#</prompt> <userinput>service glance-api restart</userinput></screen>
|
|
<screen os="rhel;centos;fedora"><prompt>#</prompt> <userinput>systemctl restart openstack-glance-api.service openstack-glance-registry.service</userinput></screen>
|
|
<para os="sles">On SLES:</para>
|
|
<screen os="sles"><prompt>#</prompt> <userinput>service openstack-glance-api restart</userinput>
|
|
<prompt>#</prompt> <userinput>service openstack-glance-registry restart</userinput></screen>
|
|
<para os="opensuse">On openSUSE:</para>
|
|
<screen os="opensuse"><prompt>#</prompt> <userinput>systemctl restart openstack-glance-api.service openstack-glance-registry.service</userinput></screen>
|
|
</step>
|
|
</procedure>
|
|
</section>
|