Files
openstack-manuals/doc/install-guide/source/ceilometer-glance.rst
Alberto Murillo 28c146c540 ceilometer-glance.rst: move rabbitmq variables to oslo_messaging_rabbitmq
Closes-Bug: 1515802

Change-Id: Ia49d736fb4c5718aaf2667aa14e1b89ef360d6f5
2015-11-12 19:50:25 -06:00

1.2 KiB

Enable Image service meters

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:

  1. In the [DEFAULT] and [oslo_messaging_rabbit] sections, configure notifications and RabbitMQ message broker access:

    [DEFAULT]
    ...
    notification_driver = messagingv2
    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 openstack account in RabbitMQ.

Finalize installation

obs or rdo

  1. Restart the Image service:

    # systemctl restart openstack-glance-api.service openstack-glance-registry.service

ubuntu

  1. Restart the Image service:

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