OpenStack Victoria : Configure Keystone #22021/08/31 |
Add Projects in Keystone.
This example is based on the environment like follows.
eth0|10.0.0.30 +-----------+-----------+ | [ Control Node ] | | | | MariaDB RabbitMQ | | Memcached httpd | | Keystone | +-----------------------+ |
[1] | Load environment variables first. The value for [OS_PASSWORD] is from the password when configuring keystone bootstrap. For [OS_AUTH_URL], specify Keystone server's hostname or IP address. |
root@dlp:~#
vi ~/keystonerc
export OS_PROJECT_DOMAIN_NAME=default
export OS_USER_DOMAIN_NAME=default export OS_PROJECT_NAME=admin export OS_USERNAME=admin export OS_PASSWORD=adminpassword export OS_AUTH_URL=http://10.0.0.30:5000/v3 export OS_IDENTITY_API_VERSION=3 export OS_IMAGE_API_VERSION=2 export PS1='\u@\h \W(keystone)\$ ' chmod 600 ~/keystonerc root@dlp:~# source ~/keystonerc root@dlp ~(keystone)# echo "source ~/keystonerc " >> ~/.bashrc
|
[2] | Add Projects. |
# create [service] project root@dlp ~(keystone)# openstack project create --domain default --description "Service Project" service +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | description | Service Project | | domain_id | default | | enabled | True | | id | 1718217eee4b4f2ea143d65122864fe0 | | is_domain | False | | name | service | | options | {} | | parent_id | default | | tags | [] | +-------------+----------------------------------+ # confirm settings root@dlp ~(keystone)# openstack project list +----------------------------------+---------+ | ID | Name | +----------------------------------+---------+ | 14c0b23f6f574380b9687f326debf0fe | admin | | 1718217eee4b4f2ea143d65122864fe0 | service | +----------------------------------+---------+ |
Sponsored Link |