Remove the deprecated configuration options

The configuration guide still mentions few deprecated config
options like rabbit_userid, rabbit_host, rabbit_password and
rpc_backend which are deprecated. They are replaced by the
transport_url option.

Change-Id: Iec8ce5c857c4bc0d3f7729d6b71de77cf0addc03
Bug-Id: #1695857
This commit is contained in:
Sharat Sharma 2017-06-05 18:12:45 +05:30
parent 8d5175300b
commit 1a97344381
1 changed files with 2 additions and 10 deletions

View File

@ -60,18 +60,10 @@ directory.
$ openstack service create workflowv2 --name mistral --description 'OpenStack Workflow service'
$ openstack endpoint create workflowv2 --publicurl $MISTRAL_URL --adminurl $MISTRAL_URL --internalurl $MISTRAL_URL
#. Configure transport properties in the corresponding config section: for
RabbitMQ it is **oslo_messaging_rabbit**::
[oslo_messaging_rabbit]
rabbit_userid = <user_id>
rabbit_password = <password>
rabbit_host = <host>
**NOTE**: Make sure that backend transport configuration is correct. Example for RabbitMQ::
#. Configure transport properties in the [DEFAULT] section::
[DEFAULT]
rpc_backend = rabbit
transport_url = rabbit://<user_id>:<password>@<host>:5672/
#. Configure database. **SQLite can't be used in production**. Use *MySQL* or
*PostgreSQL* instead. Here are the steps how to connect *MySQL* DB to Mistral: