Replace port 35357 with 5000

With Keystone v3, the admin (35357) and public (5000) ports are
the same and use the same keystone code paths for authentication.

This patch set replace 35357 and only uses port 5000

Change-Id: I596e3a2b29b2954bf7caef6f9408d9b2b4e890ee
This commit is contained in:
Nguyen Van Duc 2018-07-20 13:52:35 +07:00
parent 30c8aec6bf
commit 94058477c9
1 changed files with 2 additions and 2 deletions

View File

@ -152,7 +152,7 @@ and set in ``nova.conf``:
auth_strategy=keystone auth_strategy=keystone
[keystone_authtoken] [keystone_authtoken]
identity_uri = http://127.0.0.1:35357 identity_uri = http://127.0.0.1:5000
admin_user = admin admin_user = admin
admin_password = SuperSekretPassword admin_password = SuperSekretPassword
admin_tenant_name = service admin_tenant_name = service
@ -174,7 +174,7 @@ when ``auth_plugin`` is set to ``password``.
user_domain_name = Default user_domain_name = Default
username = nova username = nova
password = ServicePassword password = ServicePassword
auth_url = http://127.0.0.1:35357 auth_url = http://127.0.0.1:5000
# Any of the options that could be set in api-paste.ini can be set here. # Any of the options that could be set in api-paste.ini can be set here.
If using an ``auth_plugin``, connection to the Identity service will be If using an ``auth_plugin``, connection to the Identity service will be