OpenStack Yoga : Configure Keystone #22022/04/04 |
|
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 | c043fb355eff47e69642adfcd7a55620 |
| is_domain | False |
| name | service |
| options | {} |
| parent_id | default |
| tags | [] |
+-------------+----------------------------------+
# confirm settings root@dlp ~(keystone)# openstack project list +----------------------------------+---------+ | ID | Name | +----------------------------------+---------+ | c043fb355eff47e69642adfcd7a55620 | service | | ddb7c08ba73a48eea040270d13a7b0cf | admin | +----------------------------------+---------+ |
| Sponsored Link |
|
|