OpenStack Icehouse : Cinder 設定#2 ( Service ノード )2014/06/26 |
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 ~]# yum --enablerepo=openstack-icehouse,epel -y install openstack-cinder
|
[2] | Cinder Volume の基本設定です。 |
[root@storage ~]# mv /etc/cinder/cinder.conf /etc/cinder/cinder.conf.org
[root@storage ~]#
vi /etc/cinder/cinder.conf # 新規作成 [DEFAULT] state_path=/var/lib/cinder api_paste_config=api-paste.ini enable_v1_api=true osapi_volume_listen=0.0.0.0 osapi_volume_listen_port=8776 rootwrap_config=/etc/cinder/rootwrap.conf auth_strategy=keystone # Glance サーバーを指定 glance_host=10.0.0.30 glance_port=9292 # RabbitMQ サーバーを指定 rabbit_host=10.0.0.30 rabbit_port=5672 # RabbitMQ サーバー認証用ID rabbit_userid=guest # RabbitMQ サーバー認証用IDのパスワード rabbit_password=password rpc_backend=rabbit # iSCSI ターゲットサーバーを指定 (自身のIP) iscsi_ip_address=10.0.0.35 iscsi_port=3260 iscsi_helper=tgtadm scheduler_driver=cinder.scheduler.filter_scheduler.FilterScheduler volume_manager=cinder.volume.manager.VolumeManager volume_api_class=cinder.volume.api.API volumes_dir=$state_path/volumes # MariaDB の接続情報 [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_user=cinder admin_password=servicepassword admin_tenant_name=service chmod 640 /etc/cinder/cinder.conf [root@storage ~]# chgrp cinder /etc/cinder/cinder.conf
[root@storage ~]#
/etc/rc.d/init.d/openstack-cinder-volume start Starting openstack-cinder-volume: [ OK ] [root@storage ~]# chkconfig openstack-cinder-volume on # 動作確認 [root@storage ~]# cinder-manage service list Binary Host Zone Status State Updated At cinder-scheduler dlp nova enabled :-) 2014-06-27 00:41:14 cinder-volume storage nova enabled :-) 2014-06-27 00:41:20 ※ cinder-manage コマンド実行時、下記の脆弱性に関する警告が出るが、動作そのものには影響ない
/usr/lib64/python2.6/site-packages/Crypto/Util/number.py:57: PowmInsecureWarning: Not using mpz_powm_sec. You should rebuild using libgmp >= 5 to avoid timing attack vulnerability. _warn("Not using mpz_powm_sec. You should rebuild using libgmp >= 5 to avoid timing attack vulnerability.", PowmInsecureWarning) |
Sponsored Link |