CentOS 7
Sponsored Link

OpenStack Newton : Cinder 設定#1 (Control ノード)2016/10/26

 
OpenStack Block Storage(Cinder)をインストールします。
ここでは、以下のように、Keystone/Glance/Nova API インストール済みの Control ノード に 新たに Cinder API をインストールし、 Block Storage Service ノードに Cinder-Volume をインストールして設定します。 ( 例として役割ごとに分けていますが、All in One 構成にすることももちろん可能です )
                                      +------------------+
                             10.0.0.50| [ Storage Node ] |
+------------------+            +-----+   Cinder-Volume  |
| [ Control Node ] |            | eth0|                  |
|     Keystone     |10.0.0.30   |     +------------------+
|      Glance      |------------+
|     Nova API     |eth0        |     +------------------+
|    Cinder API    |            | eth0| [ Compute Node ] |
+------------------+            +-----+   Nova Compute   |
                             10.0.0.51|                  |
                                      +------------------+

 
ここでは、Control ノードの設定をします。
[1] Control ノードの Keystone に Cinder 用のユーザー等々を登録しておきます。
# cinder ユーザー作成 (service プロジェクト所属)

[root@dlp ~(keystone)]#
openstack user create --domain default --project service --password servicepassword cinder

+---------------------+----------------------------------+
| Field               | Value                            |
+---------------------+----------------------------------+
| default_project_id  | fb1ebfb4fe2a4ef3918d02932f4de062 |
| domain_id           | default                          |
| enabled             | True                             |
| id                  | 3a1abb493bea4e2993b7f5d2427d0dc8 |
| name                | cinder                           |
| password_expires_at | None                             |
+---------------------+----------------------------------+

# cinder ユーザーを admin ロール に加える

[root@dlp ~(keystone)]#
openstack role add --project service --user cinder admin
# cinder 用サービスエントリ作成

[root@dlp ~(keystone)]#
openstack service create --name cinder --description "OpenStack Block Storage" volume

+-------------+----------------------------------+
| Field       | Value                            |
+-------------+----------------------------------+
| description | OpenStack Block Storage          |
| enabled     | True                             |
| id          | e2915c7d0287413eaf00c25cb7513023 |
| name        | cinder                           |
| type        | volume                           |
+-------------+----------------------------------+

[root@dlp ~(keystone)]#
openstack service create --name cinderv2 --description "OpenStack Block Storage" volumev2

+-------------+----------------------------------+
| Field       | Value                            |
+-------------+----------------------------------+
| description | OpenStack Block Storage          |
| enabled     | True                             |
| id          | 2fcf2296255745b5baa1ada21a8f07a0 |
| name        | cinderv2                         |
| type        | volumev2                         |
+-------------+----------------------------------+

# Keystone ホストを定義しておく

[root@dlp ~(keystone)]#
export controller=10.0.0.30
# cinder 用エンドポイント作成 (public)

[root@dlp ~(keystone)]#
openstack endpoint create --region RegionOne volume public http://$controller:8776/v1/%\(tenant_id\)s

+--------------+----------------------------------------+
| Field        | Value                                  |
+--------------+----------------------------------------+
| enabled      | True                                   |
| id           | 7f2311bd8d63493b94681ca215b62bf0       |
| interface    | public                                 |
| region       | RegionOne                              |
| region_id    | RegionOne                              |
| service_id   | e2915c7d0287413eaf00c25cb7513023       |
| service_name | cinder                                 |
| service_type | volume                                 |
| url          | http://10.0.0.30:8776/v1/%(tenant_id)s |
+--------------+----------------------------------------+

# cinder 用エンドポイント作成 (internal)

[root@dlp ~(keystone)]#
openstack endpoint create --region RegionOne volume internal http://$controller:8776/v1/%\(tenant_id\)s

+--------------+----------------------------------------+
| Field        | Value                                  |
+--------------+----------------------------------------+
| enabled      | True                                   |
| id           | 5724e6f47f7b4c90976d8a668159b2cf       |
| interface    | internal                               |
| region       | RegionOne                              |
| region_id    | RegionOne                              |
| service_id   | e2915c7d0287413eaf00c25cb7513023       |
| service_name | cinder                                 |
| service_type | volume                                 |
| url          | http://10.0.0.30:8776/v1/%(tenant_id)s |
+--------------+----------------------------------------+

# cinder 用エンドポイント作成 (admin)

[root@dlp ~(keystone)]#
openstack endpoint create --region RegionOne volume admin http://$controller:8776/v1/%\(tenant_id\)s

+--------------+----------------------------------------+
| Field        | Value                                  |
+--------------+----------------------------------------+
| enabled      | True                                   |
| id           | 17ceb7aff46b4af19aa7bf105f5093f7       |
| interface    | admin                                  |
| region       | RegionOne                              |
| region_id    | RegionOne                              |
| service_id   | e2915c7d0287413eaf00c25cb7513023       |
| service_name | cinder                                 |
| service_type | volume                                 |
| url          | http://10.0.0.30:8776/v1/%(tenant_id)s |
+--------------+----------------------------------------+

# cinder 用エンドポイント作成 (v2 public)

[root@dlp ~(keystone)]#
openstack endpoint create --region RegionOne volumev2 public http://$controller:8776/v2/%\(tenant_id\)s

+--------------+----------------------------------------+
| Field        | Value                                  |
+--------------+----------------------------------------+
| enabled      | True                                   |
| id           | 5af22517e2af47ea9a2bcc9d2435c303       |
| interface    | public                                 |
| region       | RegionOne                              |
| region_id    | RegionOne                              |
| service_id   | 2fcf2296255745b5baa1ada21a8f07a0       |
| service_name | cinderv2                               |
| service_type | volumev2                               |
| url          | http://10.0.0.30:8776/v2/%(tenant_id)s |
+--------------+----------------------------------------+

# cinder 用エンドポイント作成 (v2 internal)

[root@dlp ~(keystone)]#
openstack endpoint create --region RegionOne volumev2 internal http://$controller:8776/v2/%\(tenant_id\)s

+--------------+----------------------------------------+
| Field        | Value                                  |
+--------------+----------------------------------------+
| enabled      | True                                   |
| id           | 16062d25611c49efa0dbcf1f6c162be6       |
| interface    | internal                               |
| region       | RegionOne                              |
| region_id    | RegionOne                              |
| service_id   | 2fcf2296255745b5baa1ada21a8f07a0       |
| service_name | cinderv2                               |
| service_type | volumev2                               |
| url          | http://10.0.0.30:8776/v2/%(tenant_id)s |
+--------------+----------------------------------------+

# cinder 用エンドポイント作成 (v2 admin)

[root@dlp ~(keystone)]#
openstack endpoint create --region RegionOne volumev2 admin http://$controller:8776/v2/%\(tenant_id\)s

+--------------+----------------------------------------+
| Field        | Value                                  |
+--------------+----------------------------------------+
| enabled      | True                                   |
| id           | 7719f790f14141bd970aa9733918095b       |
| interface    | admin                                  |
| region       | RegionOne                              |
| region_id    | RegionOne                              |
| service_id   | 2fcf2296255745b5baa1ada21a8f07a0       |
| service_name | cinderv2                               |
| service_type | volumev2                               |
| url          | http://10.0.0.30:8776/v2/%(tenant_id)s |
+--------------+----------------------------------------+
[2] Cinder 用のユーザーとデータベースを MariaDB に登録しておきます。
[root@dlp ~(keystone)]#
mysql -u root -p

Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 38
Server version: 10.1.17-MariaDB MariaDB Server

Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]>
create database cinder;

Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on cinder.* to cinder@'localhost' identified by 'password';

Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on cinder.* to cinder@'%' identified by 'password';

Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
flush privileges;

Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
exit

Bye
[3] Cinder サービスをインストールします。
# Newton, EPEL からインストール

[root@dlp ~(keystone)]#
yum --enablerepo=centos-openstack-newton,epel -y install openstack-cinder
[4] Cinder の基本設定です。
[root@dlp ~(keystone)]#
mv /etc/cinder/cinder.conf /etc/cinder/cinder.conf.org

[root@dlp ~(keystone)]#
vi /etc/cinder/cinder.conf
# 新規作成

[DEFAULT]
# 自ホストのIPアドレス

my_ip = 10.0.0.30
state_path = /var/lib/cinder
api_paste_config = /etc/cinder/api-paste.ini
enable_v1_api = True
enable_v2_api = True
auth_strategy = keystone
rpc_backend = rabbit
scheduler_driver = cinder.scheduler.filter_scheduler.FilterScheduler
# MariaDB の接続情報

[database]
connection = mysql+pymysql://cinder:password@10.0.0.30/cinder
# Keystone 認証情報

[keystone_authtoken]
auth_uri = http://10.0.0.30:5000
auth_url = http://10.0.0.30:35357
memcached_servers = 10.0.0.30:11211
auth_type = password
project_domain_name = default
user_domain_name = default
project_name = service
username = cinder
password = servicepassword
[oslo_concurrency]
lock_path = $state_path/tmp
# RabbitMQ 認証情報

[oslo_messaging_rabbit]
rabbit_host = 10.0.0.30
rabbit_port = 5672
rabbit_userid = openstack
rabbit_password = password
[root@dlp ~(keystone)]#
chmod 640 /etc/cinder/cinder.conf

[root@dlp ~(keystone)]#
chgrp cinder /etc/cinder/cinder.conf

[root@dlp ~(keystone)]#
su -s /bin/bash cinder -c "cinder-manage db sync"

[root@dlp ~(keystone)]#
systemctl start openstack-cinder-api openstack-cinder-scheduler

[root@dlp ~(keystone)]#
systemctl enable openstack-cinder-api openstack-cinder-scheduler

# 動作確認

root@dlp ~(keystone)#
cinder service-list

+------------------+---------------+------+---------+-------+----------------------------+-----------------+
| Binary           | Host          | Zone | Status  | State | Updated_at                 | Disabled Reason |
+------------------+---------------+------+---------+-------+----------------------------+-----------------+
| cinder-scheduler | dlp.srv.world | nova | enabled | up    | 2016-10-27T00:55:42.000000 | -               |
+------------------+---------------+------+---------+-------+----------------------------+-----------------+
[5] Firewalld を有効にしている場合は、サービスポートの許可が必要です。
[root@dlp ~(keystone)]#
firewall-cmd --add-port=8776/tcp --permanent

success
[root@dlp ~(keystone)]#
firewall-cmd --reload

success
関連コンテンツ