From c89a3435c5828a1fdc502f0714e0f2ada6778121 Mon Sep 17 00:00:00 2001 From: Christophe Sauthier Date: Wed, 17 Jan 2018 11:37:32 +0100 Subject: [PATCH] Use CK_DBUSER for the mysql user in the documentation Use CK_DBUSER for the mysql user in the documentation. Change-Id: I0e55dc4a1306280e33f6705133f2f22ee6baf9dd Closes-Bug: #1743741 --- doc/source/configuration/configuration.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/source/configuration/configuration.rst b/doc/source/configuration/configuration.rst index e737d07d..1f65472f 100644 --- a/doc/source/configuration/configuration.rst +++ b/doc/source/configuration/configuration.rst @@ -65,7 +65,7 @@ For keystone (identity) API v2 (deprecated) auth_plugin = password [database] - connection = mysql://cloudkitty:CK_DBPASSWORD@DB_HOST/cloudkitty + connection = mysql://CK_DBUSER:CK_DBPASSWORD@DB_HOST/cloudkitty [storage] backend = sqlalchemy @@ -126,7 +126,7 @@ The following shows the basic configuration items: auth_section = ks_auth [database] - connection = mysql://cloudkitty:CK_DBPASSWORD@DB_HOST/cloudkitty + connection = mysql://CK_DBUSER:CK_DBPASSWORD@DB_HOST/cloudkitty [keystone_fetcher] auth_section = ks_auth @@ -197,11 +197,11 @@ the ``mysql`` client:: mysql -uroot -p << EOF CREATE DATABASE cloudkitty; - GRANT ALL PRIVILEGES ON cloudkitty.* TO 'cloudkitty'@'localhost' IDENTIFIED BY 'CK_DBPASSWORD'; + GRANT ALL PRIVILEGES ON cloudkitty.* TO 'CK_DBUSER'@'localhost' IDENTIFIED BY 'CK_DBPASSWORD'; EOF -If you need to authorize the cloudkitty mysql user from another host you have -to change the line accordingly. +If you need to authorize the mysql user associated to cloudkitty from another host you +have to change the line accordingly. Run the database synchronisation scripts::