From 61aa385e807af467648e7bc80d3b81a0552ef3c5 Mon Sep 17 00:00:00 2001 From: Jeremy Liu Date: Wed, 18 Jan 2017 14:59:18 +0800 Subject: [PATCH] Correct configuration of db connection Change-Id: I314874866e725cf982a229cfebdffc7b3aa47a03 Closes-bug: #1655323 Closes-bug: #1654402 --- install-guide/source/common_configure.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install-guide/source/common_configure.rst b/install-guide/source/common_configure.rst index 81095ee2d..bb267d510 100644 --- a/install-guide/source/common_configure.rst +++ b/install-guide/source/common_configure.rst @@ -1,13 +1,13 @@ 2. Edit the ``/etc/barbican/barbican.conf`` file and complete the following actions: - * In the ``[database]`` section, configure database access: + * In the ``[DEFAULT]`` section, configure database access: .. code-block:: none - [database] + [DEFAULT] ... - connection = mysql+pymysql://barbican:BARBICAN_DBPASS@controller/barbican + sql_connection = mysql+pymysql://barbican:BARBICAN_DBPASS@controller/barbican Replace ``BARBICAN_DBPASS`` with the password you chose for the Key Manager service database.