OpenStack Rocky : Configure Glance2019/08/19 |
Install and Configure OpenStack Image Service (Glance).
This example is based on the environment like follows.
eth0|10.0.0.30 +-----------+-----------+ | [ Control Node ] | | | | MariaDB RabbitMQ | | Memcached httpd | | Keystone Glance | +-----------------------+ |
[1] | Add users and others for Glance in Keystone. |
# add glance user (set in service project) root@dlp ~(keystone)# openstack user create --domain default --project service --password servicepassword glance +---------------------+----------------------------------+ | Field | Value | +---------------------+----------------------------------+ | default_project_id | cc74eabb82ff4880a9aa5eb66e33e777 | | domain_id | default | | enabled | True | | id | d02abf90e4b8433d8a19c88717fde7e6 | | name | glance | | options | {} | | password_expires_at | None | +---------------------+----------------------------------+ # add glance user in admin role root@dlp ~(keystone)# openstack role add --project service --user glance admin
# add service entry for glance root@dlp ~(keystone)# openstack service create --name glance --description "OpenStack Image service" image +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | description | OpenStack Image service | | enabled | True | | id | b5a3fba813014e63ba8bf61c3df22032 | | name | glance | | type | image | +-------------+----------------------------------+ # define keystone host root@dlp ~(keystone)# export controller=10.0.0.30
# add endpoint for glance (public) root@dlp ~(keystone)# openstack endpoint create --region RegionOne image public http://$controller:9292 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 992e04bb9b68423bb15ce29bbef45ea6 | | interface | public | | region | RegionOne | | region_id | RegionOne | | service_id | b5a3fba813014e63ba8bf61c3df22032 | | service_name | glance | | service_type | image | | url | http://10.0.0.30:9292 | +--------------+----------------------------------+ # add endpoint for glance (internal) root@dlp ~(keystone)# openstack endpoint create --region RegionOne image internal http://$controller:9292 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 028d04eea3964f239dcc3b515668c4dc | | interface | internal | | region | RegionOne | | region_id | RegionOne | | service_id | b5a3fba813014e63ba8bf61c3df22032 | | service_name | glance | | service_type | image | | url | http://10.0.0.30:9292 | +--------------+----------------------------------+ # add endpoint for glance (admin) root@dlp ~(keystone)# openstack endpoint create --region RegionOne image admin http://$controller:9292 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 1475b202bf7a45f8a72d3f32edacb7b0 | | interface | admin | | region | RegionOne | | region_id | RegionOne | | service_id | b5a3fba813014e63ba8bf61c3df22032 | | service_name | glance | | service_type | image | | url | http://10.0.0.30:9292 | +--------------+----------------------------------+ |
[2] | Add a User and Database on MariaDB for Glance. |
root@dlp ~(keystone)# mysql -u root -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 44 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 glance; Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on glance.* to glance@'localhost' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on glance.* to glance@'%' 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 Glance. 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 glance
|
[4] | Configure Glance. |
root@dlp ~(keystone)# mv /etc/glance/glance-api.conf /etc/glance/glance-api.conf.org
root@dlp ~(keystone)#
vi /etc/glance/glance-api.conf # create new [DEFAULT] bind_host = 0.0.0.0 [glance_store] default_store = file filesystem_store_datadir = /var/lib/glance/images/ [database] # MariaDB connection info connection = mysql+pymysql://glance:password@10.0.0.30/glance # 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 = glance password = servicepassword [paste_deploy] flavor = keystone su -s /bin/bash glance -c "glance-manage db_sync" root@dlp ~(keystone)# systemctl restart glance-api
|
Sponsored Link |