From ab53622cd0f68facb47e9236699edb2bb51672c0 Mon Sep 17 00:00:00 2001 From: dommgifer Date: Tue, 25 Dec 2018 15:00:16 +0800 Subject: [PATCH] Replace independent aodh-api service by Apache web server The independent aodh-api service has been removed and it is now run by apache + mod_wsgi. Update the services mentioned accordingly. Note: - Apache Web server is already installed/enabled when keystone is is installed - Guide for OpenSUSE is not updated by this change, because OpenStack packages for OpenSUSE haven't been for long time. Close-bug: #1754212 Change-Id: I91544cee4c610ec5cb23f73f63efbd90da66b90a --- doc/source/install/install-rdo.rst | 11 +++++++++-- doc/source/install/install-ubuntu.rst | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/doc/source/install/install-rdo.rst b/doc/source/install/install-rdo.rst index beba7169d..34bd5fd7d 100644 --- a/doc/source/install/install-rdo.rst +++ b/doc/source/install/install-rdo.rst @@ -41,11 +41,18 @@ Finalize installation .. code-block:: console - # systemctl enable openstack-aodh-api.service \ + # systemctl enable \ openstack-aodh-evaluator.service \ openstack-aodh-notifier.service \ openstack-aodh-listener.service - # systemctl start openstack-aodh-api.service \ + # systemctl start \ openstack-aodh-evaluator.service \ openstack-aodh-notifier.service \ openstack-aodh-listener.service + +#. Restart Apache HTTP service to make aodh-api reload the updated + configuration:: + + .. code-block:: console + + # systemctl restart httpd.service diff --git a/doc/source/install/install-ubuntu.rst b/doc/source/install/install-ubuntu.rst index 3bc3a1ddb..beedd1ae0 100644 --- a/doc/source/install/install-ubuntu.rst +++ b/doc/source/install/install-ubuntu.rst @@ -38,7 +38,7 @@ Finalize installation .. code-block:: console - # service aodh-api restart + # service apache2 restart # service aodh-evaluator restart # service aodh-notifier restart # service aodh-listener restart