Advertisement
Guest User

Keystone output

a guest
Apr 23rd, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.32 KB | None | 0 0
  1. root@OSController:~# keystone --token=ADMIN12345 --os-endpoint http://10.10.1.89:35357/v2.0 user-list --tenant-id c9dead89393c4d788ae4ca2ec2291f62
  2. WARNING: Bypassing authentication using a token & endpoint (authentication credentials are being ignored).
  3. +----------------------------------+-------+---------+-------+
  4. | id | name | enabled | email |
  5. +----------------------------------+-------+---------+-------+
  6. | c337dad2fb4f4d21a37e3da4d37a472e | admin | True | |
  7. +----------------------------------+-------+---------+-------+
  8.  
  9. root@OSController:~# keystone --token=ADMIN12345 --os-endpoint http://10.10.1.89:35357/v2.0 user-list --tenant-id 30e765d2c0144f0ea2caf375c7d0ab9f
  10. WARNING: Bypassing authentication using a token & endpoint (authentication credentials are being ignored).
  11. +----------------------------------+--------+---------+-------+
  12. | id | name | enabled | email |
  13. +----------------------------------+--------+---------+-------+
  14. | c337dad2fb4f4d21a37e3da4d37a472e | admin | True | |
  15. | 2a1fcab84c984c4ca53ab8f8ad298d25 | ec2 | True | |
  16. | ee90b98087284ffe9cdbdf430e6c038d | glance | True | |
  17. | eb3e014906494b23807936407d18709a | nova | True | |
  18. | 8d79e9d74d594ec699d280136bb11dc1 | swift | True | |
  19. +----------------------------------+--------+---------+-------+
  20.  
  21.  
  22. root@OSController:~# keystone --token=ADMIN12345 --os-endpoint http://10.10.1.89:35357/v2.0 user-role-list --tenant-id 30e765d2c0144f0ea2caf375c7d0ab9f --user-id c337dad2fb4f4d21a37e3da4d37a472e
  23. WARNING: Bypassing authentication using a token & endpoint (authentication credentials are being ignored).
  24. +----------------------------------+-------+----------------------------------+----------------------------------+
  25. | id | name | user_id | tenant_id |
  26. +----------------------------------+-------+----------------------------------+----------------------------------+
  27. | d1a252bfa1a34e77a702645534bf0b59 | admin | c337dad2fb4f4d21a37e3da4d37a472e | 30e765d2c0144f0ea2caf375c7d0ab9f |
  28. +----------------------------------+-------+----------------------------------+----------------------------------+
  29. root@OSController:~# keystone --token=ADMIN12345 --os-endpoint http://10.10.1.89:35357/v2.0 user-role-list --tenant-id c9dead89393c4d788ae4ca2ec2291f62 --user-id c337dad2fb4f4d21a37e3da4d37a472e
  30. WARNING: Bypassing authentication using a token & endpoint (authentication credentials are being ignored).
  31. +----------------------------------+-------+----------------------------------+----------------------------------+
  32. | id | name | user_id | tenant_id |
  33. +----------------------------------+-------+----------------------------------+----------------------------------+
  34. | d1a252bfa1a34e77a702645534bf0b59 | admin | c337dad2fb4f4d21a37e3da4d37a472e | c9dead89393c4d788ae4ca2ec2291f62 |
  35. +----------------------------------+-------+----------------------------------+----------------------------------+
  36.  
  37. export OS_USERNAME=admin
  38. export OS_PASSWORD=password
  39. export OS_TENANT_NAME=demo
  40. export OS_AUTH_URL=http://10.10.1.89:35357/v2.0
  41.  
  42. root@OSController:~# keystone user-list
  43. Unable to authorize user
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement