[install-guide] Minor edits for ocata

Update package repository and fix a few nits.

Change-Id: I1bb323cf70969017660e32a5f24bb6c3eb96ac41
This commit is contained in:
daz 2017-02-07 16:19:36 +11:00
parent 9349f3c338
commit 32cacb2265
7 changed files with 22 additions and 21 deletions

View File

@ -28,7 +28,7 @@ these procedures on all nodes.
.. code-block:: console
# apt install software-properties-common
# add-apt-repository cloud-archive:newton
# add-apt-repository cloud-archive:ocata
.. end
@ -202,7 +202,7 @@ these procedures on all nodes.
Finalize the installation
-------------------------
1. Upgrade the packages on your host:
1. Upgrade the packages on all nodes:
.. only:: ubuntu or debian

View File

@ -13,7 +13,7 @@ services also support other SQL databases including
As of Ubuntu 16.04, MariaDB was changed to use
the "unix_socket Authentication Plugin". Local authentication is
now preformed using the user credentials (UID) and password
now performed using the user credentials (UID), and password
authentication is no longer used by default. This means that
the root user no longer uses a password for local access to
the server.

View File

@ -43,7 +43,7 @@ create a database, service credentials, and API endpoints.
.. code-block:: console
MariaDB [(none)] CREATE DATABASE glance;
MariaDB [(none)]> CREATE DATABASE glance;
.. end
@ -51,9 +51,9 @@ create a database, service credentials, and API endpoints.
.. code-block:: console
MariaDB [(none)] GRANT ALL PRIVILEGES ON glance.* TO 'glance'@'localhost' \
MariaDB [(none)]> GRANT ALL PRIVILEGES ON glance.* TO 'glance'@'localhost' \
IDENTIFIED BY 'GLANCE_DBPASS';
MariaDB [(none)] GRANT ALL PRIVILEGES ON glance.* TO 'glance'@'%' \
MariaDB [(none)]> GRANT ALL PRIVILEGES ON glance.* TO 'glance'@'%' \
IDENTIFIED BY 'GLANCE_DBPASS';
.. end

View File

@ -51,7 +51,7 @@ database and an administration token.
.. code-block:: console
MariaDB [(none)] CREATE DATABASE keystone;
MariaDB [(none)]> CREATE DATABASE keystone;
.. end
@ -59,9 +59,9 @@ database and an administration token.
.. code-block:: console
MariaDB [(none)] GRANT ALL PRIVILEGES ON keystone.* TO 'keystone'@'localhost' \
MariaDB [(none)]> GRANT ALL PRIVILEGES ON keystone.* TO 'keystone'@'localhost' \
IDENTIFIED BY 'KEYSTONE_DBPASS';
MariaDB [(none)] GRANT ALL PRIVILEGES ON keystone.* TO 'keystone'@'%' \
MariaDB [(none)]> GRANT ALL PRIVILEGES ON keystone.* TO 'keystone'@'%' \
IDENTIFIED BY 'KEYSTONE_DBPASS';
.. end
@ -70,6 +70,8 @@ database and an administration token.
* Exit the database access client.
.. _keystone-install-configure:
Install and configure components
--------------------------------
@ -372,5 +374,4 @@ Finalize the installation
.. end
Replace ``ADMIN_PASS`` with the password used in the
``keystone-manage bootstrap`` command from the section called
:ref:`keystone-install`.
``keystone-manage bootstrap`` command in `keystone-install-configure`_.

View File

@ -48,9 +48,9 @@ must create a database, service credentials, and API endpoints.
.. code-block:: console
MariaDB [(none)] GRANT ALL PRIVILEGES ON neutron.* TO 'neutron'@'localhost' \
MariaDB [(none)]> GRANT ALL PRIVILEGES ON neutron.* TO 'neutron'@'localhost' \
IDENTIFIED BY 'NEUTRON_DBPASS';
MariaDB [(none)] GRANT ALL PRIVILEGES ON neutron.* TO 'neutron'@'%' \
MariaDB [(none)]> GRANT ALL PRIVILEGES ON neutron.* TO 'neutron'@'%' \
IDENTIFIED BY 'NEUTRON_DBPASS';
.. end

View File

@ -291,7 +291,7 @@ Install and configure components
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/1506667
* Due to a packaging bug, remove the ``log-dir`` option from the
* Due to a packaging bug, remove the ``log_dir`` option from the
``[DEFAULT]`` section.
.. endonly

View File

@ -42,8 +42,8 @@ create databases, service credentials, and API endpoints.
.. code-block:: console
MariaDB [(none)] CREATE DATABASE nova_api;
MariaDB [(none)] CREATE DATABASE nova;
MariaDB [(none)]> CREATE DATABASE nova_api;
MariaDB [(none)]> CREATE DATABASE nova;
.. end
@ -51,13 +51,13 @@ create databases, service credentials, and API endpoints.
.. code-block:: console
MariaDB [(none)] GRANT ALL PRIVILEGES ON nova_api.* TO 'nova'@'localhost' \
MariaDB [(none)]> GRANT ALL PRIVILEGES ON nova_api.* TO 'nova'@'localhost' \
IDENTIFIED BY 'NOVA_DBPASS';
MariaDB [(none)] GRANT ALL PRIVILEGES ON nova_api.* TO 'nova'@'%' \
MariaDB [(none)]> GRANT ALL PRIVILEGES ON nova_api.* TO 'nova'@'%' \
IDENTIFIED BY 'NOVA_DBPASS';
MariaDB [(none)] GRANT ALL PRIVILEGES ON nova.* TO 'nova'@'localhost' \
MariaDB [(none)]> GRANT ALL PRIVILEGES ON nova.* TO 'nova'@'localhost' \
IDENTIFIED BY 'NOVA_DBPASS';
MariaDB [(none)] GRANT ALL PRIVILEGES ON nova.* TO 'nova'@'%' \
MariaDB [(none)]> GRANT ALL PRIVILEGES ON nova.* TO 'nova'@'%' \
IDENTIFIED BY 'NOVA_DBPASS';
.. end
@ -470,7 +470,7 @@ Install and configure components
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/1506667
* Due to a packaging bug, remove the ``logdir`` option from the
* Due to a packaging bug, remove the ``log_dir`` option from the
``[DEFAULT]`` section.
.. endonly