Make README better

The mysql commands in
8cde934d86/README.rst (configuring-mistral)
are clumpsy. This patch must fix it.

Change-Id: I43170d5049c2238eae855f065d18c675e77e1604
This commit is contained in:
Sharat Sharma 2017-07-25 19:36:55 +05:30
parent ca307415a1
commit 48715148e4
1 changed files with 4 additions and 4 deletions

View File

@ -69,10 +69,10 @@ an OpenStack environment.
* Create the database and grant privileges::
$ mysql -u root -p
mysql> CREATE DATABASE mistral;
mysql> USE mistral
mysql> GRANT ALL PRIVILEGES ON mistral.* TO 'mistral'@'localhost' IDENTIFIED BY 'MISTRAL_DBPASS';
mysql> GRANT ALL PRIVILEGES ON mistral.* TO 'mistral'@'%' IDENTIFIED BY 'MISTRAL_DBPASS';
mysql> CREATE DATABASE mistral;
mysql> USE mistral
mysql> GRANT ALL PRIVILEGES ON mistral.* TO 'mistral'@'localhost' IDENTIFIED BY 'MISTRAL_DBPASS';
mysql> GRANT ALL PRIVILEGES ON mistral.* TO 'mistral'@'%' IDENTIFIED BY 'MISTRAL_DBPASS';
#. Generate ``mistral.conf`` file::