keystone验证安装

 以管理员的身份来请求鉴权的标识
keystone --os-tenant-name admin --os-username admin --os-password 123456 --os-auth-url http://controller:35357/v2.0 token-get

 查询所有的租户
keystone --os-tenant-name admin --os-username admin --os-password 123456 --os-auth-url http://controller:35357/v2.0 tenant-list


查询所有的用户
keystone --os-tenant-name admin --os-username admin --os-password 123456 --os-auth-url http://controller:35357/v2.0 user-list


查询所有的角色
keystone --os-tenant-name admin --os-username admin --os-password 123456 --os-auth-url http://controller:35357/v2.0 role-list

获得demo用户鉴权的标识
keystone --os-tenant-name demo --os-username demo --os-password 123456 --os-auth-url http://controller:35357/v2.0 token-get

demo用户尝试查询所有用户
【demo用户没有管理权限,所以应该报403错误。You are not authorized to perform the requested action: admin_required (HTTP 403)】
keystone --os-tenant-name demo --os-username demo --os-password 123456 --os-auth-url http://controller:35357/v2.0 user-list


source... 的位置在/etc/keystone
posted @ 2017-07-05 11:31  scujcc_钟LS  阅读(330)  评论(0编辑  收藏  举报