This adds heat-specific contents of the OpenStack Installation Guide in the aodh repo per [1]. A separate change will remove the aodh contents from the OpenStack Installation Guide for Newton per [2]. The aodh install-guide structure is based on Install Guide Cookiecutter [3]. Also adds tox.ini environment for install-guide. [1] http://specs.openstack.org/openstack/docs-specs/specs/newton/project-specific-installguides.html [2] http://specs.openstack.org/openstack/docs-specs/specs/newton/installguide.html [3] https://review.openstack.org/#/c/314229/ Partially-Implements: blueprint projectspecificinstallguides Change-Id: Ib72b57f9422564c49bf8f24f94f4b76f335e7495
2.4 KiB
- Edit the
/etc/aodh/aodh.conf
file and complete the following actions:In the
[database]
section, configure database access:[database] ... connection = mysql+pymysql://aodh:AODH_DBPASS@controller/aodh
Replace
AODH_DBPASS
with the password you chose for the Telemetry Alarming module database. You must escape special characters such as ':', '/', '+', and '@' in the connection string in accordance with RFC2396.In the
[DEFAULT]
and[oslo_messaging_rabbit]
sections, configureRabbitMQ
message queue access:[DEFAULT] ... rpc_backend = rabbit [oslo_messaging_rabbit] ... rabbit_host = controller rabbit_userid = openstack rabbit_password = RABBIT_PASS
Replace
RABBIT_PASS
with the password you chose for theopenstack
account inRabbitMQ
.In the
[DEFAULT]
and[keystone_authtoken]
sections, configure Identity service access:[DEFAULT] ... auth_strategy = keystone [keystone_authtoken] ... auth_uri = http://controller:5000 auth_url = http://controller:35357 memcached_servers = controller:11211 auth_type = password project_domain_name = default user_domain_name = default project_name = service username = aodh password = AODH_PASS
Replace
AODH_PASS
with the password you chose for theaodh
user in the Identity service.In the
[service_credentials]
section, configure service credentials:[service_credentials] ... auth_type = password auth_url = http://controller:5000/v3 project_domain_name = default user_domain_name = default project_name = service username = aodh password = AODH_PASS interface = internalURL region_name = RegionOne
Replace
AODH_PASS
with the password you chose for theaodh
user in the Identity service.
Workaround for https://bugs.launchpad.net/ubuntu/+source/aodh/+bug/1513599.
- In order to initialize the database please run the
aodh-dbsync
script.
Note
The aodh-dbsync
script is only necessary if you are
using an SQL database.