Ubuntu 14.04
Sponsored Link

OpenStack Icehouse : Cinder 設定#2 ( Service ノード )2014/05/28

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

 
ここでは、Block Storage Service ノードの設定をします。
[1] Cinder Volume をインストールします。
root@storage:~#
apt-get -y install cinder-volume python-mysqldb
[2] Cinder Volume の基本設定です。
root@storage:~#
vi /etc/cinder/cinder.conf
# 最終行に追記

osapi_volume_listen = 0.0.0.0
osapi_volume_listen_port = 8776
# Glance サーバーを指定

glance_host = 10.0.0.30
glance_port = 9292
# iSCSI ターゲットサーバーを指定 (自身のIP)

iscsi_ip_address = 10.0.0.35
iscsi_port = 3260
rpc_backend = cinder.openstack.common.rpc.impl_kombu
# RabbitMQ サーバーを指定

rabbit_host = 10.0.0.30
rabbit_port = 5672
# RabbitMQ サーバー認証用ID

rabbit_userid = guest
# RabbitMQ サーバー認証用IDのパスワード

rabbit_password = password
# MySQL DB の接続情報

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

[keystone_authtoken]
auth_host = 10.0.0.30
auth_port = 35357
auth_protocol = http
admin_tenant_name = service
admin_user = cinder
admin_password = servicepassword
root@storage:~#
service cinder-volume restart

cinder-volume stop/waiting
cinder-volume start/running, process 3608
# 動作確認

root@storage:~#
cinder-manage service list

Binary           Host           Zone             Status     State Updated At
cinder-scheduler dlp            nova             enabled    :-)   2014-05-28 17:23:45
cinder-volume    storage        nova             enabled    :-)   2014-05-28 17:23:48
関連コンテンツ