From: ZhiQiang Fan Date: Wed, 21 Aug 2013 17:05:27 +0000 (+0800) Subject: Fix auth_url in metadata_agent.ini X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=0ec5a89360816df570ced3e5f990aa1cee429170;p=openstack-build%2Fneutron-build.git Fix auth_url in metadata_agent.ini Closes-Bug: #1214921 The value of auth_url is incorrect, some operators may not change that value and problem will occur. According to keystone, 35357 is the port number which the public admin listens on, 5000 should be used for neutron instead. Change-Id: I0b35f25c1845d02f8b9b3cd8c759920d52003c0c --- diff --git a/etc/metadata_agent.ini b/etc/metadata_agent.ini index a76b18a41..12c04587b 100644 --- a/etc/metadata_agent.ini +++ b/etc/metadata_agent.ini @@ -3,7 +3,7 @@ # debug = True # The Neutron user information for accessing the Neutron API. -auth_url = http://localhost:35357/v2.0 +auth_url = http://localhost:5000/v2.0 auth_region = RegionOne admin_tenant_name = %SERVICE_TENANT_NAME% admin_user = %SERVICE_USER%