Merge "Fix install guide MySQL admin instructions"

This commit is contained in:
Jenkins 2017-01-18 19:16:55 +00:00 committed by Gerrit Code Review
commit 97b0a8d420
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::