From 7b74170504bb3db6db3f16a4d54c9394b5168e9c Mon Sep 17 00:00:00 2001 From: Francisco Redondo Marchena Date: Mon, 10 Nov 2014 18:07:56 +0000 Subject: WIP: Enable rabbitmq in keystone --- openstack/etc/keystone/keystone.conf | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/openstack/etc/keystone/keystone.conf b/openstack/etc/keystone/keystone.conf index 474c5f11..2295af56 100644 --- a/openstack/etc/keystone/keystone.conf +++ b/openstack/etc/keystone/keystone.conf @@ -200,23 +200,23 @@ public_port=5000 # The RabbitMQ broker address where a single node is used. # (string value) -#rabbit_host=keystone +rabbit_host=##RABBITMQ_HOST## # The RabbitMQ broker port where a single node is used. # (integer value) -#rabbit_port=5672 +rabbit_port=##RABBITMQ_PORT## # RabbitMQ HA cluster host:port pairs. (list value) -#rabbit_hosts=$rabbit_host:$rabbit_port +rabbit_hosts=$rabbit_host:$rabbit_port # Connect over SSL for RabbitMQ. (boolean value) -#rabbit_use_ssl=false +rabbit_use_ssl=false # The RabbitMQ userid. (string value) -#rabbit_userid=guest +rabbit_userid=##RABBITMQ_USER## # The RabbitMQ password. (string value) -#rabbit_password=guest +rabbit_password=##RABBITMQ_PASSWORD## # the RabbitMQ login method (string value) #rabbit_login_method=AMQPLAIN @@ -310,7 +310,7 @@ public_port=5000 # The messaging driver to use, defaults to rabbit. Other # drivers include qpid and zmq. (string value) -#rpc_backend=rabbit +rpc_backend=rabbit # The default exchange under which topics are scoped. May be # overridden by an exchange name specified in the -- cgit v1.2.1