From 559f0533d83dd9fcb4b1ffd6d45fcac2293d9537 Mon Sep 17 00:00:00 2001 From: Zara Date: Sat, 31 Dec 2016 18:36:31 +0000 Subject: [PATCH] Fix install guide MySQL admin instructions This commit amends the lines about the MySQL password prompt so that they do not suggest the user input the password in the body of the command(s) to modify the StoryBoard database. MySQL prompts the user for a password *after* the user enters a command, so this makes our instructions more accurate and easier to follow. Change-Id: Ifc38ee869c8232e61f542b7a4753f0411c71e237 --- doc/source/install/development.rst | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/source/install/development.rst b/doc/source/install/development.rst index 72680cb2..48d68ce3 100644 --- a/doc/source/install/development.rst +++ b/doc/source/install/development.rst @@ -35,12 +35,13 @@ NOTE: If you are using a Virtual Machine (VM), all commands that begin with 3. Add MySQL user and create database: - NOTE: You will need to replace the ``$DB_USER`` with ``root`` and the - ``$DB_PASSWORD`` with the password you set when you ran + NOTE: You will need to replace the ``$DB_USER`` with ``root``. + It will prompt for a password; this is + the password you set when you ran ``sudo apt-get mysql-server-5.6`` in step 1:: - mysql -u $DB_USER -p$DB_PASSWORD -e 'DROP DATABASE IF EXISTS storyboard;' - mysql -u $DB_USER -p$DB_PASSWORD -e 'CREATE DATABASE storyboard;' + mysql -u $DB_USER -p -e 'DROP DATABASE IF EXISTS storyboard;' + mysql -u $DB_USER -p -e 'CREATE DATABASE storyboard;' 4. Copy the sample configuration file::