Improper usage example in README.rst

Bug #1697138 reported by Jeffrey Guan
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
Mistral
Fix Released
Medium
Jeffrey Guan

Bug Description

Two minor comments:

1. To keep align with openstack common services, it might be better to update the example for creating database and grant privileges from

 69 * Create the database and grant privileges::
 70
 71 $ mysql -u root -p
 72 mysql> CREATE DATABASE mistral;
 73 mysql> USE mistral
 74 mysql> GRANT ALL ON mistral.* TO 'root'@'localhost';

to

 69 * Create the database and grant privileges::
 70
 71 $ mysql -u root -p
 72 mysql> CREATE DATABASE mistral;
 73 mysql> USE mistral
 74 mysql> GRANT ALL PRIVILEGES ON mistral.* TO 'mistral'@'localhost' IDENTIFIED BY 'MISTRAL_DBPASS';
 75 GRANT ALL PRIVILEGES ON mistral.* TO 'mistral'@'%' IDENTIFIED BY 'MISTRAL_DBPASS';

in mistral/README.rst.

refs: https://docs.openstack.org/ocata/install-guide-rdo/keystone-install.html

2. Improper example for "auth_uri" and "identity_uri" in mistral/README.rst.

It might be better to update from

111 #. Provide valid keystone auth properties::
112
113 [keystone_authtoken]
114 auth_uri = http://<Keystone-host>/identity_v2_admin/v3
115 identity_uri = http://<Keystone-host/identity_v2_admin
116 auth_version = v3
117 admin_user = <user>
118 admin_password = <password>
119 admin_tenant_name = <tenant>

to

111 #. Provide valid keystone auth properties::
112
113 [keystone_authtoken]
114 auth_uri = http://keystone-host:port/v3
115 identity_uri = http://keystone-host:port
116 auth_version = v3
117 admin_user = <user>
118 admin_password = <password>
119 admin_tenant_name = <tenant>

Changed in mistral:
assignee: nobody → Jeffrey Guan (double12gzh)
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to mistral (master)

Fix proposed to branch: master
Review: https://review.openstack.org/472884

Changed in mistral:
status: New → In Progress
summary: - Unproper useage example in README.rst
+ Improper useage example in README.rst
summary: - Improper useage example in README.rst
+ Improper usage example in README.rst
Changed in mistral:
milestone: none → pike-3
importance: Undecided → Medium
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to mistral (master)

Reviewed: https://review.openstack.org/472884
Committed: https://git.openstack.org/cgit/openstack/mistral/commit/?id=d556af949c77705d5e702075749a03376e6525c5
Submitter: Jenkins
Branch: master

commit d556af949c77705d5e702075749a03376e6525c5
Author: Sharat Sharma <email address hidden>
Date: Mon Jul 10 16:51:58 2017 +0530

    Update the commands in README.rst

    The commands given to grant previleges for mistral database and
    the auth_uri and identity_uri in the keystone_authtoken section in
    the README.rst is outdated. This patch updates it.

    Change-Id: I141a64c8a1214fd8f4a35a9b9003ec2a180a48b2
    Co-Authored-By: Sharat Sharma <email address hidden>
    Closes-Bug: #1697138

Changed in mistral:
status: In Progress → Fix Released
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix included in openstack/mistral 5.0.0.0b3

This issue was fixed in the openstack/mistral 5.0.0.0b3 development milestone.

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.