- OpenStack Cloud Computing Cookbook(Fourth Edition)
- Kevin Jackson Cody Bunch Egle Sigler James Denton
- 242字
- 2021-07-02 16:25:06
Common OpenStack identity tasks
This section outlines a number of common steps to take for a number of common actions using the OpenStack Identity service. This is intended as a quick reference guide only. For more detailed information and explanation of each task, refer to Chapter 3, Keystone – OpenStack Identity Service.
Getting ready
Ensure that you have the OpenStack clients installed, as described in the first recipes of this chapter.
How to do it…
Carry out the following steps to create and modify users and projects in OpenStack:
Creating a new user in a project is achieved with the following command. For example, to create the project called development
, execute the following command:
openstack project create development
To create a user called developer
, with a password of password123
, carry out the following command:
openstack user create --domain default --password password123 --enable developer
To add a user with the _member_
role (regular user) to the development
project, carry out the following command:
openstack role add --project development --user developer _member_
As an administrator, you have the ability to alter someone's password. To do this for the developer
user, carry out the following command:
openstack user set --password cookbook4 developer
- Go Web編程
- Android Wearable Programming
- Mobile Web Performance Optimization
- LabVIEW入門與實戰開發100例
- Java入門很輕松(微課超值版)
- Python Deep Learning
- Full-Stack React Projects
- Apache Mesos Essentials
- C#程序設計基礎:教程、實驗、習題
- Java EE 8 Application Development
- Terraform:多云、混合云環境下實現基礎設施即代碼(第2版)
- 軟件體系結構
- Clojure High Performance Programming(Second Edition)
- ASP.NET開發寶典
- Clojure Data Structures and Algorithms Cookbook