56ae73a8f2
backport: havana Change-Id: I45b9394f22e5dd630a505acd30685bb33dbb60fd
37 lines
2.0 KiB
XML
37 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<section xml:id="ceilometer-install-glance"
|
|
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">
|
|
<title>Add the Image Service agent for the Telemetry service</title>
|
|
<procedure>
|
|
<step>
|
|
<para>To retrieve image samples, you must configure the Image
|
|
Service to send notifications to the bus.</para>
|
|
|
|
<para os="debian;ubuntu">Edit
|
|
<filename>/etc/glance/glance-api.conf</filename> and modify the
|
|
<literal>[DEFAULT]</literal> section:</para>
|
|
<programlisting language="ini" os="debian;ubuntu">notifier_strategy = rabbit
|
|
rabbit_host = controller
|
|
rabbit_password = <replaceable>RABBIT_PASS</replaceable></programlisting>
|
|
|
|
<para os="opensuse;sles;fedora;rhel;centos">Run the following commands:</para>
|
|
<screen os="opensuse;sles"><prompt>#</prompt> <userinput>openstack-config --set /etc/ceilometer/ceilometer.conf DEFAULT notifier_strategy rabbit</userinput>
|
|
<prompt>#</prompt> <userinput>openstack-config --set /etc/ceilometer/ceilometer.conf DEFAULT rabbit_host controller</userinput>
|
|
<prompt>#</prompt> <userinput>openstack-config --set /etc/ceilometer/ceilometer.conf DEFAULT rabbit_password <replaceable>RABBIT_PASS</replaceable></userinput></screen>
|
|
|
|
<screen os="fedora;rhel;centos"><prompt>#</prompt> <userinput>openstack-config --set /etc/ceilometer/ceilometer.conf DEFAULT notifier_strategy qpid</userinput></screen>
|
|
|
|
</step>
|
|
<step>
|
|
<para>Restart the Image services with their new
|
|
settings:</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;fedora;centos;opensuse;sles"><prompt>#</prompt> <userinput>service openstack-glance-api restart</userinput>
|
|
<prompt>#</prompt> <userinput>service openstack-glance-registry restart</userinput></screen>
|
|
</step>
|
|
</procedure>
|
|
</section>
|