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
This commit is contained in:
Zara 2016-12-31 18:36:31 +00:00
parent 1190973843
commit 559f0533d8
1 changed files with 5 additions and 4 deletions

View File

@ -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::