OpenStack Rocky : Configure Cinder#1 (Control Node)2019/08/21 |
Install and Configure OpenStack Block Storage (Cinder).
This example is based on the emvironment like follows.
------------+---------------------------+---------------------------+------------ | | | 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] | Add a User or Endpoint for Cinder to Keystone on Control Node. |
# add cinder user (set in service project) root@dlp ~(keystone)# openstack user create --domain default --project service --password servicepassword cinder +---------------------+----------------------------------+ | Field | Value | +---------------------+----------------------------------+ | default_project_id | af821885c5934a9395aeabe996751847 | | domain_id | default | | enabled | True | | id | 3e2210c8990d42fcaf0b2a902b70b8ad | | name | cinder | | options | {} | | password_expires_at | None | +---------------------+----------------------------------+ # add cinder user in admin role root@dlp ~(keystone)# openstack role add --project service --user cinder admin
# add service entry for cinder root@dlp ~(keystone)# openstack service create --name cinderv3 --description "OpenStack Block Storage" volumev3 +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | description | OpenStack Block Storage | | enabled | True | | id | 2559c3b81711497ca2a688cd456219d7 | | name | cinderv3 | | type | volumev3 | +-------------+----------------------------------+ # define cinder API host root@dlp ~(keystone)# export controller=10.0.0.30
# add endpoint for cinder (public) root@dlp ~(keystone)# openstack endpoint create --region RegionOne volumev3 public http://$controller:8776/v3/%\(tenant_id\)s +--------------+----------------------------------------+ | Field | Value | +--------------+----------------------------------------+ | enabled | True | | id | c9bfbede4897443e9e8a94bbe4c154bb | | interface | public | | region | RegionOne | | region_id | RegionOne | | service_id | 2559c3b81711497ca2a688cd456219d7 | | service_name | cinderv3 | | service_type | volumev3 | | url | http://10.0.0.30:8776/v3/%(tenant_id)s | +--------------+----------------------------------------+ # add endpoint for cinder (internal) root@dlp ~(keystone)# openstack endpoint create --region RegionOne volumev3 internal http://$controller:8776/v3/%\(tenant_id\)s +--------------+----------------------------------------+ | Field | Value | +--------------+----------------------------------------+ | enabled | True | | id | d5894bbb2c4242afb91680874bfad5b4 | | interface | internal | | region | RegionOne | | region_id | RegionOne | | service_id | 2559c3b81711497ca2a688cd456219d7 | | service_name | cinderv3 | | service_type | volumev3 | | url | http://10.0.0.30:8776/v3/%(tenant_id)s | +--------------+----------------------------------------+ # add endpoint for cinder (admin) root@dlp ~(keystone)# openstack endpoint create --region RegionOne volumev3 admin http://$controller:8776/v3/%\(tenant_id\)s +--------------+----------------------------------------+ | Field | Value | +--------------+----------------------------------------+ | enabled | True | | id | 70814a9b548747abb711a11db8af6237 | | interface | admin | | region | RegionOne | | region_id | RegionOne | | service_id | 2559c3b81711497ca2a688cd456219d7 | | service_name | cinderv3 | | service_type | volumev3 | | url | http://10.0.0.30:8776/v3/%(tenant_id)s | +--------------+----------------------------------------+ |
[2] | Add a User and Database on MariaDB for Cinder. |
root@dlp ~(keystone)# mysql -u root -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 100 Server version: 10.3.15-MariaDB-1 Debian 10 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 cinder; Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on cinder.* to cinder@'localhost' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on cinder.* to cinder@'%' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
MariaDB [(none)]> flush privileges; Query OK, 0 rows affected (0.00 sec) exit Bye |
[3] | Install Cinder Service. For questions during installation, it's OK to answer with [No] or input any value to them, Configure all with manualy below. |
root@dlp ~(keystone)# apt -y install cinder-api cinder-scheduler python-cinderclient
|
[4] | Configure Cinder. |
root@dlp ~(keystone)# mv /etc/cinder/cinder.conf /etc/cinder/cinder.conf.org
root@dlp ~(keystone)#
vi /etc/cinder/cinder.conf # create new [DEFAULT] # define own IP address my_ip = 10.0.0.30 rootwrap_config = /etc/cinder/rootwrap.conf api_paste_confg = /etc/cinder/api-paste.ini state_path = /var/lib/cinder auth_strategy = keystone # RabbitMQ connection info transport_url = rabbit://openstack:password@10.0.0.30 enable_v3_api = True # MariaDB connection info [database] connection = mysql+pymysql://cinder:password@10.0.0.30/cinder # 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 = cinder password = servicepassword [oslo_concurrency] lock_path = $state_path/tmp chmod 644 /etc/cinder/cinder.conf root@dlp ~(keystone)# chown root:cinder /etc/cinder/cinder.conf
root@dlp ~(keystone)#
su -s /bin/bash cinder -c "cinder-manage db sync" root@dlp ~(keystone)# systemctl restart cinder-api cinder-scheduler
# set environment variable root@dlp ~(keystone)# echo "export OS_VOLUME_API_VERSION=3" >> ~/keystonerc root@dlp ~(keystone)# source ~/keystonerc
# show status root@dlp ~(keystone)# openstack volume service list +------------------+---------------+------+---------+-------+----------------------------+ | Binary | Host | Zone | Status | State | Updated At | +------------------+---------------+------+---------+-------+----------------------------+ | cinder-scheduler | dlp.srv.world | nova | enabled | up | 2019-08-21T02:10:00.000000 | +------------------+---------------+------+---------+-------+----------------------------+ |
Sponsored Link |