change mysql url in dev-quickstart doc

we have switched from MySQL-python to PyMySQL[1], so the mysql url in
dev-quickstart doc should be changed also, this patch will change
\connection=mysql:@' to 'connection=mysql+pymysql:@'.

[1] https://review.openstack.org/#/c/184392

Closes-bug: #1520020

Change-Id: Ibd2e6170eba3fe64f6a79966e1384c3ffc64f05b
This commit is contained in:
Haomeng, Wang 2015-11-30 13:50:01 +00:00 committed by Haomeng,Wang
parent 63a16d2c6b
commit 09e4407dcf

View File

@ -200,7 +200,7 @@ Option 1: Manual Install
mysql -u root -e "create schema ironic"
# and switch the DB connection from sqlite to something else, eg. mysql
sed -i "s/#connection=.*/connection=mysql:\/\/root@localhost\/ironic/" etc/ironic/ironic.conf.local
sed -i "s/#connection=.*/connection=mysql\+pymysql:\/\/root@localhost\/ironic/" etc/ironic/ironic.conf.local
At this point, you can continue to Step 2.