Files
aodh/doc/source/install/install-rdo.rst
Jaromir Wysoglad c4fd9e43c3 Fix install rdo doc codeblock
Change-Id: I07c351c48bb2da132c72abb140464f65889c9983
Signed-off-by: Jaromir Wysoglad <jwysogla@redhat.com>
2025-10-10 05:42:46 -04:00

1.7 KiB

Install and configure for Red Hat Enterprise Linux and CentOS

This section describes how to install and configure the Telemetry Alarming service, code-named aodh, on the controller node.

This section assumes that you already have a working OpenStack environment with at least the following components installed: Compute, Image Service, Identity.

Install and configure components

Note

Default configuration files vary by distribution. You might need to add these sections and options rather than modifying existing sections and options. Also, an ellipsis (...) in the configuration snippets indicates potential default configuration options that you should retain.

  1. Install the packages:

    # dnf install openstack-aodh-api \
      openstack-aodh-evaluator openstack-aodh-notifier \
      openstack-aodh-listener openstack-aodh-expirer \
      python3-aodhclient

Finalize installation

  1. Start the Telemetry Alarming services and configure them to start when the system boots:

    # systemctl enable \
      openstack-aodh-evaluator.service \
      openstack-aodh-notifier.service \
      openstack-aodh-listener.service
    # systemctl start \
      openstack-aodh-evaluator.service \
      openstack-aodh-notifier.service \
      openstack-aodh-listener.service
  2. Restart Apache HTTP service to make aodh-api reload the updated configuration:

    # systemctl restart httpd.service