From ee871e9665a6a47f68d60c3b9aadd3739e871b2c Mon Sep 17 00:00:00 2001 From: Lorin Hochstein Date: Thu, 16 Aug 2012 21:03:58 -0400 Subject: [PATCH] Specify actual keystone IP address in api-paste.ini. The example api-paste.ini used 127.0.0.1 as the IP address for keystone. This proposed patch uses the actual IP address of the machine (192.168.206.130). This file will now still work if the nova-api service runs on a different machine than keystone. Change-Id: Icff1c9e6e96875339aefe35d5a4006b9b482cc7d --- .../openstack-install/ap_configuration_files.xml | 13 +++++++++++++ .../docbkx/openstack-install/samples/api-paste.ini | 6 +++--- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/doc/src/docbkx/openstack-install/ap_configuration_files.xml b/doc/src/docbkx/openstack-install/ap_configuration_files.xml index 83e65bdf9b..cdf25e1ff0 100644 --- a/doc/src/docbkx/openstack-install/ap_configuration_files.xml +++ b/doc/src/docbkx/openstack-install/ap_configuration_files.xml @@ -58,6 +58,19 @@ Identity service. You should also add all the Keystone configuration specified in the sample file below. + This guide assumes that the IP address of the machine that runs the Identity service + is 192.168.206.130. If the IP address of the machine on your setup is + different, change the following configuration options: + + service_host + + + auth_host + + + auth_uri + +
Credentials (openrc)This file contains the credentials used by Compute, Image, and Identity services, you can optionally store in diff --git a/doc/src/docbkx/openstack-install/samples/api-paste.ini b/doc/src/docbkx/openstack-install/samples/api-paste.ini index d0e54040de..7e3eb93dd8 100644 --- a/doc/src/docbkx/openstack-install/samples/api-paste.ini +++ b/doc/src/docbkx/openstack-install/samples/api-paste.ini @@ -144,12 +144,12 @@ paste.filter_factory = nova.api.auth:NovaKeystoneContext.factory [filter:authtoken] paste.filter_factory = keystone.middleware.auth_token:filter_factory service_protocol = http -service_host = 127.0.0.1 +service_host = 192.168.206.130 service_port = 5000 -auth_host = 127.0.0.1 +auth_host = 192.168.206.130 auth_port = 35357 auth_protocol = http -auth_uri = http://127.0.0.1:5000/ +auth_uri = http://192.168.206.130:5000/ admin_tenant_name = service admin_user = nova admin_password = nova