Debian 10 Buster
Sponsored Link

OpenStack Rocky : Cinder 設定#2 (Storage ノード)2019/08/21

 
OpenStack Block Storage(Cinder)をインストールします。
当例では以下のような環境を例に Cinder サービスをインストールします。
------------+---------------------------+---------------------------+------------
            |                           |                           |
        eth0|10.0.0.30              eth0|10.0.0.50              eth0|10.0.0.51
+-----------+-----------+   +-----------+-----------+   +-----------+-----------+
|    [ Control Node ]   |   |    [ Network Node ]   |   |    [ Compute Node ]   |
|                       |   |                       |   |                       |
|  MariaDB    RabbitMQ  |   |        L2 Agent       |   |        Libvirt        |
|  Memcached  httpd     |   |        L3 Agent       |   |     Nova Compute      |
|  Keystone   Glance    |   |     Metadata Agent    |   |        L2 Agent       |
|  Nova API             |   |     Cinder Volume     |   |                       |
|  Neutron Server       |   |                       |   |                       |
|  Metadata Agent       |   |                       |   |                       |
|  Cinder API           |   |                       |   |                       |
+-----------------------+   +-----------------------+   +-----------------------+

[1] Cinder Volume をインストールします。なお、インストール中の問いには全て [No] または ブランクで OK です。(後ほど手動設定)
root@storage:~#
apt -y install cinder-volume python-mysqldb python-rtslib-fb
[2] Cinder Volume の基本設定です。
root@storage:~#
mv /etc/cinder/cinder.conf /etc/cinder/cinder.conf.org

root@storage:~#
vi /etc/cinder/cinder.conf
# 新規作成

[DEFAULT]
# 自ホストのIPアドレス
my_ip = 10.0.0.50
rootwrap_config = /etc/cinder/rootwrap.conf
api_paste_confg = /etc/cinder/api-paste.ini
state_path = /var/lib/cinder
auth_strategy = keystone
# RabbitMQ 接続情報
transport_url = rabbit://openstack:password@10.0.0.30
enable_v3_api = True
# Glance サーバーを指定
glance_api_servers = http://10.0.0.30:9292
# 値は一旦ブランクでOK
enabled_backends =

# MariaDB 接続情報
[database]
connection = mysql+pymysql://cinder:password@10.0.0.30/cinder

# Keystone 認証情報
[keystone_authtoken]
www_authenticate_uri = http://10.0.0.30:5000
auth_url = http://10.0.0.30:5000
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

root@storage:~#
chmod 644 /etc/cinder/cinder.conf

root@storage:~#
chown root:cinder /etc/cinder/cinder.conf

root@storage:~#
systemctl restart cinder-volume
関連コンテンツ