Keystone user-list authentication error. [closed]
Hello,
I am running through the OpenStack lab for running openstack on a virtual machine and have run into an issue that I can't seem to get past.
I am following this guide: http://docs.openstack.org/training-guides/content/lab000-openstack-training-labs.html (http://docs.openstack.org/training-gu...)
And am currently in this section: http://docs.openstack.org/training-guides/content/lab001-control-node.xml.html (http://docs.openstack.org/training-gu...) On the last step for setting up Keystone.
At this point I have been able to follow all of the steps in the guide without issue, and used the keystone_basic.sh and keystone_endpoints_basic.sh that can be found here: https://bugs.launchpad.net/openstack-training-guides/+bug/1282056 (https://bugs.launchpad.net/openstack-...)
At this point though, when I run the command 'keystone user-list' I get the output:
root@compute:/home/<username># keystone user-list
The request you have made requires authentication. (HTTP 401)
I'm not sure why I am having authentication issues though since I have sourced a file Credentials.sh with the username and password that I have set up so far (as described in the guide).
Is there something obvious I am missing so far?
Thanks,
-Ben
EDIT (debug content without usernames or passwords):
<username>@compute:~/openstack-config$ keystone --debug user-list
REQ: curl -i -X POST http://192.168.100.51:5000/v2.0/tokens -H "Content-Type: application/json" -H "User-Agent: python-keystoneclient"
REQ BODY: {"auth": {"tenantName": "<username>", "passwordCredentials": {"username": "<username>", "password": "<password>"}}}
RESP: [401] CaseInsensitiveDict({'date': 'Mon, 11 Aug 2014 06:25:19 GMT', 'vary': 'X-Auth-Token', 'content-length': '114', 'content-type': 'application/json'})
RESP BODY: {"error": {"message": "The request you have made requires authentication.", "code": 401, "title": "Unauthorized"}}
Request returned failure status: 401
The request you have made requires authentication. (HTTP 401)