From 644edc9e2dadc139152981eb953e8d9e6e5bd717 Mon Sep 17 00:00:00 2001 From: Ivan Anfimov Date: Thu, 13 Feb 2025 19:14:05 +0000 Subject: [PATCH] Install and configure the Trove dashboard - several improvements Change-Id: I033aabe8af8edf6e40bdebdfe271ec7f4338b3ac --- doc/source/install/dashboard.rst | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/doc/source/install/dashboard.rst b/doc/source/install/dashboard.rst index fe4936ea22..76728b7495 100644 --- a/doc/source/install/dashboard.rst +++ b/doc/source/install/dashboard.rst @@ -9,16 +9,25 @@ Install and configure the Trove dashboard .. code-block:: console - # pip install trove-dashboard + # python3 -m pip install trove-dashboard * The command above will install the latest version which is appropriate if you are running the latest Trove. If you are running an earlier version of Trove you may need to specify a compatible version of trove-dashboard. -* After pip installs it, locate the trove-dashboard directory and +* After pip installs it, locate the trove-dashboard directory (approximate path: /usr/local/lib/python3.XX/site-packages/) and copy the contents of the ``enabled/`` directory to your horizon ``openstack_dashboard/local/enabled/`` directory. -* Reload Apache to pick up the changes to Horizon. +* If your use Ubuntu, reload Apache to pick up the changes to Horizon: + .. code-block:: console + + # systemctl reload apache2.service + +* If your use RHEL/CentOS, restart Apache to pick up the changes to Horizon: + + .. code-block:: console + + # systemctl restart httpd.service