Configuring Middleware in Devstack
Hey! In my devstack environment, I want to configure glance service to use Keystone; running on another machine. For this, I added below lines in glance-registry.conf file. Basically, I change auth_url from a.b.c.d to x.y.z.l.
password = 22
username = glance
auth_url = http://x.y.z.l:35357
auth_plugin = password
identity_uri = http://x.y.z.l:35357
admin_tenant_name = %SERVICE_TENANT_NAME%
admin_user = %SERVICE_USER%
admin_password = %SERVICE_PASSWORD%
But when I run openstack --debug --os-auth-url http://x.y.z.l:35357 --os-project-name admin --os-username admin --os-auth-type password image list
then it gives me Unauthorized error.
Please tell me what I am missing?