From 427cab67923097c3efefc3b254587160cf70f7f9 Mon Sep 17 00:00:00 2001 From: Colleen Murphy Date: Tue, 30 Oct 2018 11:30:58 +0100 Subject: [PATCH] Delete "Preparing your environment" section The "Preparing your environment" section on the configuration page is out of date as it still refers to the service token. It is also out of place for this page and is redundant with the installation guide[1] and the developer environment guide[2]. Just delete it. [1] https://docs.openstack.org/keystone/latest/install/index.html [2] https://docs.openstack.org/keystone/latest/contributor/set-up-keystone.html Change-Id: I1e3a17044260b2ca378a01c836b3fb6bfabe0e6d --- doc/source/configuration.rst | 57 ------------------------------------ 1 file changed, 57 deletions(-) diff --git a/doc/source/configuration.rst b/doc/source/configuration.rst index 3ca545b7ba..48ec0fa379 100644 --- a/doc/source/configuration.rst +++ b/doc/source/configuration.rst @@ -412,63 +412,6 @@ If a response to ``list_{entity}`` call has been truncated, then the response status code will still be 200 (OK), but the ``truncated`` attribute in the collection will be set to ``true``. -.. _`prepare your deployment`: - -Preparing your deployment -========================= - -Step 1: Configure keystone.conf -------------------------------- - -Ensure that your ``keystone.conf`` is configured to use a SQL driver: - -.. code-block:: ini - - [identity] - driver = sql - -You may also want to configure your ``[database]`` settings to better reflect -your environment: - -.. code-block:: ini - - [database] - connection = sqlite:///keystone.db - idle_timeout = 200 - -.. NOTE:: - - It is important that the database that you specify be different from the - one containing your existing install. - -Step 2: Sync your new, empty database -------------------------------------- - -You should now be ready to initialize your new database without error, using: - -.. code-block:: bash - - $ keystone-manage db_sync - -To test this, you should now be able to start keystone: - -.. code-block:: bash - - $ uwsgi --http 127.0.0.1:35357 --wsgi-file $(which keystone-wsgi-admin) - -And use the OpenStack Client to list your projects (which should successfully -return an empty list from your new database): - -.. code-block:: bash - - $ openstack --os-token ADMIN --os-url http://127.0.0.1:35357/v3/ project list - -.. NOTE:: - - We're providing the default OS_TOKEN and OS_URL values from - ``keystone.conf`` to connect to the keystone service. If you changed those - values, or deployed keystone to a different endpoint, you will need to - change the provided command accordingly. Supported clients =================