OpenStack Yoga : Configure Manila (Control Node)2022/04/07 |
Install OpenStack Shared File System (Manila).
This example is based on the environment like follows.
------------+---------------------------+---------------------------+------------ | | | 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] | Add a user or endpoint for Manila on Keystone Server. |
# create [manila] user in [service] project root@dlp ~(keystone)# openstack user create --domain default --project service --password servicepassword manila +---------------------+----------------------------------+ | Field | Value | +---------------------+----------------------------------+ | default_project_id | c043fb355eff47e69642adfcd7a55620 | | domain_id | default | | enabled | True | | id | 96c8d7c5da0e4e26b58009934a5e1274 | | name | manila | | options | {} | | password_expires_at | None | +---------------------+----------------------------------+ # add [manila] user in [admin] role root@dlp ~(keystone)# openstack role add --project service --user manila admin
# create service entry for [manila] root@dlp ~(keystone)# openstack service create --name manilav2 --description "OpenStack Shared Filesystem V2" sharev2 +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | description | OpenStack Shared Filesystem V2 | | enabled | True | | id | 5603f54c07464e42a4e9718353353f78 | | name | manilav2 | | type | sharev2 | +-------------+----------------------------------+ # define Manila API Host root@dlp ~(keystone)# export controller=10.0.0.30
# create endpoint for [manila] (public) root@dlp ~(keystone)# openstack endpoint create --region RegionOne sharev2 public http://$controller:8786/v2 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 7d87c3462e2949a1bb0e84eb1d11b443 | | interface | public | | region | RegionOne | | region_id | RegionOne | | service_id | 5603f54c07464e42a4e9718353353f78 | | service_name | manilav2 | | service_type | sharev2 | | url | http://10.0.0.30:8786/v2 | +--------------+----------------------------------+ # create endpoint for [manila] (internal) root@dlp ~(keystone)# openstack endpoint create --region RegionOne sharev2 internal http://$controller:8786/v2 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 8ae5430b77db4e48b6f685830198f66e | | interface | internal | | region | RegionOne | | region_id | RegionOne | | service_id | 5603f54c07464e42a4e9718353353f78 | | service_name | manilav2 | | service_type | sharev2 | | url | http://10.0.0.30:8786/v2 | +--------------+----------------------------------+ # create endpoint for [manila] (admin) root@dlp ~(keystone)# openstack endpoint create --region RegionOne sharev2 admin http://$controller:8786/v2 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 8e338c7cae4e4d2ea33881ef34d18790 | | interface | admin | | region | RegionOne | | region_id | RegionOne | | service_id | 5603f54c07464e42a4e9718353353f78 | | service_name | manilav2 | | service_type | sharev2 | | url | http://10.0.0.30:8786/v2 | +--------------+----------------------------------+ |
[2] | Create a database for Manila to MariaDB. |
root@dlp ~(keystone)# mysql Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 109 Server version: 10.3.34-MariaDB-0ubuntu0.20.04.1 Ubuntu 20.04 Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> create database manila; Query OK, 1 row affected (0.00 sec) MariaDB [(none)]> grant all privileges on manila.* to manila@'localhost' identified by 'password'; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> grant all privileges on manila.* to manila@'%' identified by 'password'; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> flush privileges; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> exit Bye |
[3] | Install Manila services. It's OK with [No] answer to all questions during the installation. |
root@dlp ~(keystone)# apt -y install manila-api manila-scheduler python3-manilaclient
|
[4] | Configure Manila. |
root@dlp ~(keystone)# mv /etc/manila/manila.conf /etc/manila/manila.conf.org
root@dlp ~(keystone)#
vi /etc/manila/manila.conf # create new [DEFAULT] # IP address of this host my_ip = 10.0.0.30 rootwrap_config = /etc/manila/rootwrap.conf api_paste_config = /etc/manila/api-paste.ini state_path = /var/lib/manila auth_strategy = keystone default_share_type = default_share_type share_name_template = share-%s # RabbitMQ connection info transport_url = rabbit://openstack:password@10.0.0.30 # MariaDB connection info [database] connection = mysql+pymysql://manila:password@10.0.0.30/manila # Keystone auth info [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 cp /usr/lib/python3/dist-packages/manila/tests/policy.yaml /etc/manila/ root@dlp ~(keystone)# chmod 640 /etc/manila/{manila.conf,policy.yaml} root@dlp ~(keystone)# chgrp manila /etc/manila/{manila.conf,policy.yaml}
root@dlp ~(keystone)#
su -s /bin/bash manila -c "manila-manage db sync" root@dlp ~(keystone)# systemctl restart manila-api manila-scheduler root@dlp ~(keystone)# systemctl enable manila-api manila-scheduler # show status root@dlp ~(keystone)# manila service-list +----+------------------+---------------+------+---------+-------+----------------------------+ | Id | Binary | Host | Zone | Status | State | Updated_at | +----+------------------+---------------+------+---------+-------+----------------------------+ | 1 | manila-scheduler | dlp.srv.world | nova | enabled | up | 2022-04-07T01:42:51.361393 | +----+------------------+---------------+------+---------+-------+----------------------------+ |
Sponsored Link |