OpenStack Wallaby : Manila 設定 (Storage ノード)2021/04/21 |
OpenStack Shared File System(Manila)をインストールします。
当例では以下のような環境を例に Manila サービスをインストールします。
------------+---------------------------+---------------------------+------------ | | | eth0|10.0.0.30 eth0|10.0.0.50 eth0|10.0.0.51 +-----------+-----------+ +-----------+-----------+ +-----------+-----------+ | [ Control Node ] | | [ Storage Node ] | | [ Compute Node ] | | | | | | | | MariaDB RabbitMQ | | Open vSwitch | | Libvirt | | Memcached httpd | | Neutron Server | | Nova Compute | | Keystone Glance | | OVN-Northd | | Open vSwitch | | Nova API | | Cinder Volume | | OVN Metadata Agent | | Cinder API | | iSCSI Target | | OVN-Controller | | Manila API | | Heat API/Engine | | | | | | Manila Share | | | +-----------------------+ +-----------------------+ +-----------------------+ |
[1] | Storage ノード に Manila Share をインストールします。インストール中の問いには全て [No] で OK です。 |
root@storage:~# apt -y install manila-share python3-pymysql python3-mysqldb
|
[2] | Manila Share を設定します。ここでは設定のみで、サービスは後ほど起動します。 |
root@storage:~# mv /etc/manila/manila.conf /etc/manila/manila.conf.org
root@storage:~#
vi /etc/manila/manila.conf # 新規作成 [DEFAULT] my_ip = 10.0.0.50 api_paste_config = /etc/manila/api-paste.ini rootwrap_config = /etc/manila/rootwrap.conf state_path = /var/lib/manila auth_strategy = keystone default_share_type = default_share_type enabled_share_protocols = NFS,CIFS # RabbitMQ 接続情報 transport_url = rabbit://openstack:password@10.0.0.30 # MariaDB 接続情報 [database] connection = mysql+pymysql://manila:password@10.0.0.30/manila # 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 = manila password = servicepassword [oslo_concurrency] lock_path = $state_path/tmp [oslo_policy] policy_file = /etc/manila/policy.yaml cp /usr/lib/python3/dist-packages/manila/tests/policy.yaml /etc/manila/ root@storage:~# chmod 640 /etc/manila/manila.conf /etc/manila/policy.yaml root@storage:~# chgrp manila /etc/manila/manila.conf /etc/manila/policy.yaml |
Sponsored Link |