From bc29d4843d5d4a69c2b5e92475a805d218a9c55e Mon Sep 17 00:00:00 2001 From: Akihiro Motoki Date: Mon, 7 Jan 2019 15:39:42 +0900 Subject: [PATCH] Revert "Remove -u root as mysql is executed with root user" This commit was approved just to keep the consistency with other OpenStack projects, but most proposed changes related to it have been rejected so far [1]. The main reason is because it is clearer to specify options explicitly and we should not assume some configuration. I totally agree these opinions and see no reason that neutron contineus to use different command line options for mysql. Consistency in the installation guide will bring better user experience. [1] https://review.openstack.org/#/q/file:%255Edoc/source/install/.*+message:mysql This reverts commit 59d178c9de6028016053f2a6958372e14ded386a. Related-Bug: #1785025 Change-Id: I699d03de9e26d5784e6bd5e7d4fa219de6209207 --- doc/source/install/controller-install-obs.rst | 2 +- doc/source/install/controller-install-rdo.rst | 2 +- doc/source/install/controller-install-ubuntu.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/install/controller-install-obs.rst b/doc/source/install/controller-install-obs.rst index 64a5ecc89c4..4d55567ac95 100644 --- a/doc/source/install/controller-install-obs.rst +++ b/doc/source/install/controller-install-obs.rst @@ -14,7 +14,7 @@ must create a database, service credentials, and API endpoints. .. code-block:: console - # mysql + $ mysql -u root -p .. end diff --git a/doc/source/install/controller-install-rdo.rst b/doc/source/install/controller-install-rdo.rst index 82903799aa4..352fa241b35 100644 --- a/doc/source/install/controller-install-rdo.rst +++ b/doc/source/install/controller-install-rdo.rst @@ -14,7 +14,7 @@ must create a database, service credentials, and API endpoints. .. code-block:: console - # mysql + $ mysql -u root -p .. end diff --git a/doc/source/install/controller-install-ubuntu.rst b/doc/source/install/controller-install-ubuntu.rst index 754f8f529d1..f108f5a8b6d 100644 --- a/doc/source/install/controller-install-ubuntu.rst +++ b/doc/source/install/controller-install-ubuntu.rst @@ -14,7 +14,7 @@ must create a database, service credentials, and API endpoints. .. code-block:: console - # mysql + $ mysql -u root -p .. end