From b9c0252a4c0433ef6cef392696a4affbb335fcaf Mon Sep 17 00:00:00 2001 From: "zhiguo.li" Date: Fri, 28 Jul 2017 19:28:58 +0800 Subject: [PATCH] Add the step to install apache2 libapache2-mod-wsgi The guide uses the Apache HTTP server with mod_wsgi to serve identity service, but it did not introduce the step to install Apache2 and libapache2-mod-wsgi package in this guide. The identity service will not be started without these two packages. This patch modify the step 1 in part "Install and configure components" for installing two packages metioned above. Change-Id: I8ca55e605f806bdc48f753ab893040d9a76aa93d Closes-Bug: 1707176 --- doc/source/install/keystone-install-ubuntu.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/install/keystone-install-ubuntu.rst b/doc/source/install/keystone-install-ubuntu.rst index 3da61ed8ce..7d6635bbff 100644 --- a/doc/source/install/keystone-install-ubuntu.rst +++ b/doc/source/install/keystone-install-ubuntu.rst @@ -63,7 +63,7 @@ Install and configure components .. code-block:: console - # apt install keystone + # apt install keystone apache2 libapache2-mod-wsgi .. end