diff --git a/doc/install-guide/section_keystone-install.xml b/doc/install-guide/section_keystone-install.xml
index e479240d28..d98159a778 100644
--- a/doc/install-guide/section_keystone-install.xml
+++ b/doc/install-guide/section_keystone-install.xml
@@ -30,7 +30,7 @@
database connection mysql://keystone:KEYSTONE_DBPASS@controller/keystone
Edit
/etc/keystone/keystone.conf and change
- the [database] section.
+ the [database] section:
...
[database]
@@ -53,8 +53,9 @@ connection = mysql://keystone:KEYSTONE_DBPASS@By default, the Ubuntu packages create a SQLite database.
Delete the keystone.db file created in
the /var/lib/keystone/ directory so that it
- does not get used by mistake.
-
+ does not get used by mistake:
+ #rm /var/lib/keystone/keystone.db
+
Use the password that you set previously to log in as
root. Create a keystone database
@@ -62,9 +63,10 @@ connection = mysql://keystone:KEYSTONE_DBPASS@$mysql -u root -pmysql>CREATE DATABASE keystone;mysql>GRANT ALL PRIVILEGES ON keystone.* TO 'keystone'@'localhost' \
-IDENTIFIED BY 'KEYSTONE_DBPASS';
+ IDENTIFIED BY 'KEYSTONE_DBPASS';
mysql>GRANT ALL PRIVILEGES ON keystone.* TO 'keystone'@'%' \
-IDENTIFIED BY 'KEYSTONE_DBPASS';
+ IDENTIFIED BY 'KEYSTONE_DBPASS';
+mysql>exitCreate the database tables for the Identity Service:
@@ -180,7 +182,7 @@ admin_token = ADMIN_TOKEN
Edit
/etc/keystone/keystone.conf and change
the [DEFAULT] section, replacing
- ADMIN_TOKEN with the results of the command.
+ ADMIN_TOKEN with the results of the command:
[DEFAULT]
# A "shared secret" between keystone and other openstack services
admin_token = ADMIN_TOKEN
diff --git a/doc/install-guide/section_keystone-users.xml b/doc/install-guide/section_keystone-users.xml
index 3d4a95d815..c9f57f25af 100644
--- a/doc/install-guide/section_keystone-users.xml
+++ b/doc/install-guide/section_keystone-users.xml
@@ -13,13 +13,13 @@
in the next section.
Typically, you would indicate a user and password to
- authenticate with the Identity Service. At this point, however, we
- have not created any users, so we have to use the authorization
+ authenticate with the Identity Service. At this point, however, you
+ have not created any users, so you have to use the authorization
token created in an earlier step, see
for further details. You can pass this with the
option to the
keystone command or set the
- OS_SERVICE_TOKEN environment variable. We'll set
+ OS_SERVICE_TOKEN environment variable. Set
OS_SERVICE_TOKEN, as well as
OS_SERVICE_ENDPOINT to specify where the Identity
Service is running. Replace