- OpenStack Cloud Computing Cookbook(Fourth Edition)
- Kevin Jackson Cody Bunch Egle Sigler James Denton
- 198字
- 2021-07-02 16:25:08
Creating OpenStack projects in Keystone
Users can't be created without having a project assigned to them, so these must be created first. For this section, we will create a project for our users, called cookbook
.
Getting ready
Ensure that you are logged on to a correctly configured OpenStack client and can access the OpenStack environment as a user with admin privileges.
Refer to Chapter 2, The OpenStack Client, for details of setting up your environment to use OpenStack command-line client.
How to do it…
To create a project in our OpenStack environment, perform the following steps:
- We start by creating a project called
cookbook
as follows:openstack project create --domain bookstore --description "Cookbook Project" cookbook
The command should produce the output similar to this:
How it works…
By running the preceding command, we just created a project in our bookstore
domain. The syntax is as follows:
openstack project create --domain <domain> --description <description> <name>
The domain
parameter is optional, used to determine which domain the project will belong to. If omitted, the project will be created in the default
domain. The description
parameter is also optional, but highly recommended. The name
parameter has to be unique to the installation.
- Boost程序庫完全開發指南:深入C++”準”標準庫(第5版)
- 區塊鏈:以太坊DApp開發實戰
- Elasticsearch Server(Third Edition)
- Python Web數據分析可視化:基于Django框架的開發實戰
- R用戶Python學習指南:數據科學方法
- C++ Application Development with Code:Blocks
- Instant jQuery Boilerplate for Plugins
- Practical GIS
- H5+移動營銷設計寶典
- 百萬在線:大型游戲服務端開發
- 深入理解Java虛擬機:JVM高級特性與最佳實踐
- INSTANT Premium Drupal Themes
- Unity 5 Game Optimization
- Learn C Programming
- JavaScript+jQuery交互式Web前端開發(第2版)