openstack-manuals/doc/install-guide/source/ceilometer-glance.rst
Andreas Jaeger 25d1b7d617 Remove DocBook XML files for Install Guide
Remove DocBook XML files and rename directory from install-guide-rst to
install-guide.

Adjust everything so that publishing works.
Update README to remove DocBook XML Install Guide specific instructions.

Implements: blueprint installguide-liberty
Change-Id: If723c44c3c0383dc8ab8e53798d82e7f0ee2cc57
2015-08-19 16:35:31 +02:00

1.1 KiB

Configure the Image service

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.

Edit the /etc/glance/glance-api.conf and /etc/glance/glance-registry.conf files and complete the following actions:

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

    [DEFAULT]
    ...
    notification_driver = messagingv2
    rpc_backend = 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.

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