OpenStack Bobcat : Configure Manila (Control Node)2023/10/26 |
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 +-----------+-----------+ +-----------+-----------+ +-----------+-----------+ | [ dlp.srv.world ] | | [ network.srv.world ] | | [ node01.srv.world ] | | (Control Node) | | (Network Node) | | (Compute Node) | | | | | | | | MariaDB RabbitMQ | | Open vSwitch | | Libvirt | | Memcached Nginx | | Neutron Server | | Nova Compute | | Keystone httpd | | OVN-Northd | | Open vSwitch | | Glance Nova API | | Nginx iSCSI Target | | OVN Metadata Agent | | Cinder API Manila API | | Cinder Volume | | OVN-Controller | | | | 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 | 5d97881520b34e6bbf1f15e778c82fe4 | | domain_id | default | | enabled | True | | id | 4f3602765ba14e08baaeaceb5f66e913 | | 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 | c1a1db84857a4ed6ad745a3b75ec2591 | | name | manilav2 | | type | sharev2 | +-------------+----------------------------------+ # define Manila API Host [root@dlp ~(keystone)]# export controller=dlp.srv.world
# create endpoint for [manila] (public) [root@dlp ~(keystone)]# openstack endpoint create --region RegionOne sharev2 public https://$controller:8786/v2 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 4ea8890e65524b89b5d96316ee3dac96 | | interface | public | | region | RegionOne | | region_id | RegionOne | | service_id | c1a1db84857a4ed6ad745a3b75ec2591 | | service_name | manilav2 | | service_type | sharev2 | | url | https://dlp.srv.world:8786/v2 | +--------------+----------------------------------+ # create endpoint for [manila] (internal) [root@dlp ~(keystone)]# openstack endpoint create --region RegionOne sharev2 internal https://$controller:8786/v2 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 1812d0db3f9946b7b2a65e9a898c42e9 | | interface | internal | | region | RegionOne | | region_id | RegionOne | | service_id | c1a1db84857a4ed6ad745a3b75ec2591 | | service_name | manilav2 | | service_type | sharev2 | | url | https://dlp.srv.world:8786/v2 | +--------------+----------------------------------+ # create endpoint for [manila] (admin) [root@dlp ~(keystone)]# openstack endpoint create --region RegionOne sharev2 admin https://$controller:8786/v2 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | b476fa7c618d4d36a0fdde191d7a618c | | interface | admin | | region | RegionOne | | region_id | RegionOne | | service_id | c1a1db84857a4ed6ad745a3b75ec2591 | | service_name | manilav2 | | service_type | sharev2 | | url | https://dlp.srv.world: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 100 Server version: 10.5.16-MariaDB MariaDB Server 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)]> exit Bye |
[3] | Install Manila services. |
[root@dlp ~(keystone)]# dnf --enablerepo=centos-openstack-bobcat,epel,crb -y install openstack-manila 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] osapi_share_listen = 127.0.0.1 osapi_share_listen_port = 8786 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@dlp.srv.world # MariaDB connection info [database] connection = mysql+pymysql://manila:password@dlp.srv.world/manila # Keystone auth info [keystone_authtoken] www_authenticate_uri = https://dlp.srv.world:5000 auth_url = https://dlp.srv.world:5000 memcached_servers = dlp.srv.world:11211 auth_type = password project_domain_name = default user_domain_name = default project_name = service username = manila password = servicepassword # if using self-signed certs on httpd Keystone, turn to [true] insecure = false [oslo_concurrency] lock_path = $state_path/tmp [oslo_policy] policy_file = /etc/manila/policy.yaml touch /etc/manila/policy.yaml [root@dlp ~(keystone)]# chmod 640 /etc/manila/{manila.conf,policy.yaml} [root@dlp ~(keystone)]# chgrp manila /etc/manila/{manila.conf,policy.yaml} |
[5] | Configure Nginx for proxy settings. |
[root@dlp ~(keystone)]#
vi /etc/nginx/nginx.conf # add into the [stream] section
stream {
upstream glance-api {
server 127.0.0.1:9292;
}
server {
listen 10.0.0.30:9292 ssl;
proxy_pass glance-api;
}
upstream nova-api {
server 127.0.0.1:8774;
}
server {
listen 10.0.0.30:8774 ssl;
proxy_pass nova-api;
}
upstream nova-metadata-api {
server 127.0.0.1:8775;
}
server {
listen 10.0.0.30:8775 ssl;
proxy_pass nova-metadata-api;
}
upstream placement-api {
server 127.0.0.1:8778;
}
server {
listen 10.0.0.30:8778 ssl;
proxy_pass placement-api;
}
upstream novncproxy {
server 127.0.0.1:6080;
}
server {
listen 10.0.0.30:6080 ssl;
proxy_pass novncproxy;
}
upstream cinder-api {
server 127.0.0.1:8776;
}
server {
listen 10.0.0.30:8776 ssl;
proxy_pass cinder-api;
}
upstream manila-api {
server 127.0.0.1:8786;
}
server {
listen 10.0.0.30:8786 ssl;
proxy_pass manila-api;
}
ssl_certificate "/etc/letsencrypt/live/dlp.srv.world/fullchain.pem";
ssl_certificate_key "/etc/letsencrypt/live/dlp.srv.world/privkey.pem";
}
|
[6] | If SELinux is enabled, change policy. |
[root@dlp ~(keystone)]# semanage port -a -t http_port_t -p tcp 8786 |
[7] | If Firewalld is running, allow service ports. |
[root@dlp ~(keystone)]# firewall-cmd --add-port=8786/tcp success [root@dlp ~(keystone)]# firewall-cmd --runtime-to-permanent success |
[8] | Add Data into Database and start Manila services. |
[root@dlp ~(keystone)]#
su -s /bin/bash manila -c "manila-manage db sync" [root@dlp ~(keystone)]# systemctl enable --now openstack-manila-api openstack-manila-scheduler [root@dlp ~(keystone)]# systemctl restart nginx # show status [root@dlp ~(keystone)]# openstack share service list +----+------------------+---------------+------+---------+-------+----------------------------+ | ID | Binary | Host | Zone | Status | State | Updated At | +----+------------------+---------------+------+---------+-------+----------------------------+ | 1 | manila-scheduler | dlp.srv.world | nova | enabled | up | 2023-10-26T01:14:51.725420 | +----+------------------+---------------+------+---------+-------+----------------------------+ |
Sponsored Link |