From 6e2c24ade0b1d77af5b6079b8026992091a1ca6d Mon Sep 17 00:00:00 2001 From: Matt Kassawara Date: Mon, 7 Apr 2014 08:28:44 -0600 Subject: [PATCH] Corrected 'rpc_backend' in Glance installation section I corrected the 'rpc_backend' configuration key in /etc/glance-api.conf to use 'rabbit' and 'qpid' values from Oslo. I also removed extraneous AMQP configuration from /etc/glance-registry.conf. Change-Id: Ice9848de7fdee0df82bf35082237371e1d6ed19d Closes-Bug: #1302976 --- doc/install-guide/section_glance-install.xml | 43 ++++++++------------ 1 file changed, 18 insertions(+), 25 deletions(-) diff --git a/doc/install-guide/section_glance-install.xml b/doc/install-guide/section_glance-install.xml index 38ca8948fc..b6959c2c3a 100644 --- a/doc/install-guide/section_glance-install.xml +++ b/doc/install-guide/section_glance-install.xml @@ -69,47 +69,40 @@ connection = mysql://glance:GLANCE_DBPASS@controller/ - Set these configuration keys to configure the Image Service to use - the Qpid message broker: + Configure the Image Service to use the message broker: # openstack-config --set /etc/glance/glance-api.conf DEFAULT \ - rpc_backend glance.openstack.common.rpc.impl_qpid + rpc_backend qpid # openstack-config --set /etc/glance/glance-api.conf DEFAULT \ - qpid_hostname controller - # openstack-config --set /etc/glance/glance-registry.conf DEFAULT \ - rpc_backend glance.openstack.common.rpc.impl_qpid -# openstack-config --set /etc/glance/glance-registry.conf DEFAULT \ qpid_hostname controller - Configure the Image service to use the RabbitMQ message broker by - setting these configuration keys in the [DEFAULT] - configuration group of the /etc/glance/glance-api.conf - and /etc/glance/glance-registry.conf - files: - Replace RABBIT_PASS with the password - you chose for the guest account in - RabbitMQ. - rpc_backend = glance.rpc.impl_kombu + Configure the Image Service to use the message broker: + + + Edit the /etc/glance/glance-api.conf + file and add the following keys to the + [DEFAULT] section: + Replace RABBIT_PASS with the + password you chose for the guest account in + RabbitMQ. + [DEFAULT] +... +rpc_backend = rabbit rabbit_host = controller rabbit_password = RABBIT_PASS + + - Set these configuration keys to configure the Identity service to use - the RabbitMQ message broker: + Configure the Image Service to use the message broker: Replace RABBIT_PASS with the password you chose for the guest account in RabbitMQ. # openstack-config --set /etc/glance/glance-api.conf DEFAULT \ - rpc_backend glance.rpc.impl_kombu + rpc_backend rabbit # openstack-config --set /etc/glance/glance-api.conf DEFAULT \ rabbit_host controller # openstack-config --set /etc/glance/glance-api.conf DEFAULT \ - rabbit_password RABBIT_PASS - # openstack-config --set /etc/glance/glance-registry.conf DEFAULT \ - rpc_backend glance.rpc.impl_kombu -# openstack-config --set /etc/glance/glance-registry.conf DEFAULT \ - rabbit_host controller -# openstack-config --set /etc/glance/glance-registry.conf DEFAULT \ rabbit_password RABBIT_PASS