OpenStack Kilo : Cinder 設定#2 ( Service ノード )2015/06/16 |
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| | +------------------+ |
ここでは、Block Storage Service ノードの設定をします。
|
|
[1] | Cinder Volume をインストールします。 |
[root@storage ~]# yum --enablerepo=openstack-kilo,epel -y install openstack-cinder targetcli
|
[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 enable_v2_api = True osapi_volume_listen = 0.0.0.0 osapi_volume_listen_port = 8776 auth_strategy = keystone rpc_backend = rabbit # Glance サーバーを指定 glance_host = 10.0.0.30 glance_port = 9292 notification_driver = cinder.openstack.common.notifier.rpc_notifier scheduler_driver = cinder.scheduler.filter_scheduler.FilterScheduler # MariaDB の接続情報 [database] connection = mysql://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 auth_plugin = password project_domain_id = default user_domain_id = 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 = guest rabbit_password = password chmod 640 /etc/cinder/cinder.conf [root@storage ~]# chgrp cinder /etc/cinder/cinder.conf
[root@storage ~]#
systemctl start openstack-cinder-volume [root@storage ~]# systemctl enable openstack-cinder-volume # 動作確認 [root@storage ~]# cinder-manage service list Binary Host Zone Status State Updated At cinder-scheduler dlp nova enabled :-) 2015-06-16 13:29:56 cinder-volume network nova enabled :-) 2015-06-16 13:29:57 ※ 以下の警告は気にしなくてよい
/usr/lib/python2.7/site-packages/cinder/openstack/common/service.py:38: DeprecationWarning: The oslo namespace package is deprecated. Please use oslo_config instead. from oslo.config import cfg No handlers could be found for logger "oslo_config.cfg" |
Sponsored Link |