Files
ceilometer/install-guide/source/configure_services/glance/install-glance-ubuntu.rst
chenxing fb2fb7a55e Make rabbitmq configuration much simpler
Update from this commit https://review.openstack.org/#/c/389971/1
in the openstack-manuals project.
'rpc_backend', 'rabbit_host', 'rabbit_userid', and
'rabbit_password' are deprecated for removal, for more
information, see
http://docs.openstack.org/developer/oslo.messaging/opts.html#configuration-options

Change-Id: I412a7e43197aca8ff78a139c5f9ee91590421e59
2016-12-01 08:27:38 +00:00

1.0 KiB

Enable Image service meters for Ubuntu

Telemetry uses notifications to collect Image service meters. Perform these steps on the controller node.

Configure the Image service to use Telemetry

  • Edit the /etc/glance/glance-api.conf and /etc/glance/glance-registry.conf files and complete the following actions:
    • In the [DEFAULT], [oslo_messaging_notifications] sections, configure notifications and RabbitMQ message broker access:

      [DEFAULT]
      ...
      transport_url = rabbit://openstack:RABBIT_PASS@controller
      
      [oslo_messaging_notifications]
      ...
      driver = messagingv2

      Replace RABBIT_PASS with the password you chose for the openstack account in RabbitMQ.

Finalize installation

  • Restart the Image service:

    # service glance-registry restart
    # service glance-api restart