Update Rabbit MQ server configuration extract.

Change-Id: I827ca80cea9f20d326d9cc74d4cf8554a23e8fbd
This commit is contained in:
David TARDIVEL
2015-11-13 19:58:35 +01:00
parent 2ae17a11eb
commit cef629eef3

View File

@@ -194,22 +194,36 @@ so that the watcher service is configured for your needs.
#. Configure the Watcher Service to use the RabbitMQ message broker by #. Configure the Watcher Service to use the RabbitMQ message broker by
setting one or more of these options. Replace RABBIT_HOST with the setting one or more of these options. Replace RABBIT_HOST with the
address of the RabbitMQ server.:: IP address of the RabbitMQ server, RABBITMQ_USER and RABBITMQ_PASSWORD
by the RabbitMQ server login credentials ::
[DEFAULT] [watcher_messaging]
...
# The RabbitMQ broker address where a single node is used # The name of the driver used by oslo messaging (string value)
#notifier_driver = messaging
# The name of a message executor, forexample: eventlet, blocking
# (string value) # (string value)
rabbit_host=RABBIT_HOST #executor = blocking
# The RabbitMQ userid (string value) # The protocol used by the message broker, for example rabbit (string
#rabbit_userid=guest # value)
#protocol = rabbit
# The RabbitMQ password (string value) # The username used by the message broker (string value)
#rabbit_password=guest user = RABBITMQ_USER
# The RabbitMQ virtual host (string value) # The password of user used by the message broker (string value)
#rabbit_virtual_host=/ password = RABBITMQ_PASSWORD
# The host where the message brokeris installed (string value)
host = RABBIT_HOST
# The port used bythe message broker (string value)
#port = 5672
# The virtual host used by the message broker (string value)
#virtual_host =
#. Configure the Watcher Service to use these credentials with the Identity #. Configure the Watcher Service to use these credentials with the Identity
Service. Replace IDENTITY_IP with the IP of the Identity server, and Service. Replace IDENTITY_IP with the IP of the Identity server, and