From 33f1e8a573f436643f53bc17118b7dd0f916eceb Mon Sep 17 00:00:00 2001 From: Brant Knudson Date: Sun, 3 May 2015 09:44:09 -0500 Subject: [PATCH] Remove auth_token from logging auth_token configuration doesn't have anything to do with logging, so remove the auth_token configuration docs from the logging section. Change-Id: Ieb484ace858b936fa8a612d6e474d160e610a846 --- doc/admin-guide-cloud/ch_identity_mgmt.xml | 41 ---------------------- 1 file changed, 41 deletions(-) diff --git a/doc/admin-guide-cloud/ch_identity_mgmt.xml b/doc/admin-guide-cloud/ch_identity_mgmt.xml index b411170f85..8e909d5be5 100644 --- a/doc/admin-guide-cloud/ch_identity_mgmt.xml +++ b/doc/admin-guide-cloud/ch_identity_mgmt.xml @@ -64,47 +64,6 @@ pipeline = stats_monitoring url_normalize token_auth admin_token_auth xml_body j other OpenStack projects, Identity uses the Python logging module, which includes extensive configuration options that let you define the output levels and formats. - Review the etc/keystone.conf sample - configuration files that are distributed with the Identity - Service. For example, each server application has its own - configuration file. - For services that have separate paste-deploy - .ini files, you can configure - auth_token middleware in the - [keystone_authtoken] section in the main - configuration file, such as nova.conf. For - example in Compute, you can remove the middleware parameters - from api-paste.ini, as follows: - [filter:authtoken] -paste.filter_factory = keystonemiddleware.auth_token:filter_factory - Prior to the Juno release, the auth_token middleware was in - python-keystoneclient. The filter_factory must be set to - keystoneclient.middleware.auth_token:filter_factory - in those releases. - - Set these values in the nova.conf - file: - [DEFAULT] -... -auth_strategy=keystone - -[keystone_authtoken] -auth_uri = http://controller:5000/v2.0 -identity_uri = http://controller:35357 -admin_user = admin -admin_password = SuperSekretPassword -admin_tenant_name = service - - Middleware parameters in paste config take priority. You - must remove them to use values in the - [keystone_authtoken] section. - - - Comment out any auth_host, - auth_port, and - auth_protocol options because the - identity_uri option replaces them. -
Start the Identity services