CentOS 7
Sponsored Link

OpenStack Liberty : Configure Glance2015/11/15

 
Install and Configure OpenStack Image Service (Glance).
[1] Add users and others for Glance in Keystone.
# add glance user (set in service project)

[root@dlp ~]#
openstack user create --domain default --project service --password servicepassword glance

+--------------------+----------------------------------+
| Field              | Value                            |
+--------------------+----------------------------------+
| default_project_id | 11a4bfa2b8c748ad860efb34b5fefb7f |
| domain_id          | default                          |
| enabled            | True                             |
| id                 | 33e4461c9f33428295bb25768765594a |
| name               | glance                           |
+--------------------+----------------------------------+

# add glance user in admin role

[root@dlp ~]#
openstack role add --project service --user glance admin
# add service entry for glance

[root@dlp ~]#
openstack service create --name glance --description "OpenStack Image service" image

+-------------+----------------------------------+
| Field       | Value                            |
+-------------+----------------------------------+
| description | OpenStack Image service          |
| enabled     | True                             |
| id          | 89cb00176008409f9426869fcabaeb11 |
| name        | glance                           |
| type        | image                            |
+-------------+----------------------------------+

# define keystone host

[root@dlp ~]#
export controller=10.0.0.30
# add endpoint for glance (public)

[root@dlp ~]#
openstack endpoint create --region RegionOne image public http://$controller:9292

+--------------+----------------------------------+
| Field        | Value                            |
+--------------+----------------------------------+
| enabled      | True                             |
| id           | 34c5a766973149f6af280e5b91991c9a |
| interface    | public                           |
| region       | RegionOne                        |
| region_id    | RegionOne                        |
| service_id   | 89cb00176008409f9426869fcabaeb11 |
| service_name | glance                           |
| service_type | image                            |
| url          | http://10.0.0.30:9292            |
+--------------+----------------------------------+

# add endpoint for glance (internal)

[root@dlp ~]#
openstack endpoint create --region RegionOne image internal http://$controller:9292

+--------------+----------------------------------+
| Field        | Value                            |
+--------------+----------------------------------+
| enabled      | True                             |
| id           | d5d067e75bf64bb38c5fb62fa349afa5 |
| interface    | internal                         |
| region       | RegionOne                        |
| region_id    | RegionOne                        |
| service_id   | 89cb00176008409f9426869fcabaeb11 |
| service_name | glance                           |
| service_type | image                            |
| url          | http://10.0.0.30:9292            |
+--------------+----------------------------------+

# add endpoint for glance (admin)

[root@dlp ~]#
openstack endpoint create --region RegionOne image admin http://$controller:9292

+--------------+----------------------------------+
| Field        | Value                            |
+--------------+----------------------------------+
| enabled      | True                             |
| id           | 888e480ea4014931af015f88abafe326 |
| interface    | admin                            |
| region       | RegionOne                        |
| region_id    | RegionOne                        |
| service_id   | 89cb00176008409f9426869fcabaeb11 |
| service_name | glance                           |
| service_type | image                            |
| url          | http://10.0.0.30:9292            |
+--------------+----------------------------------+
[2] Install Glance.
# install from Liberty, EPEL

[root@dlp ~]#
yum --enablerepo=centos-openstack-liberty,epel -y install openstack-glance
[3] Add a User and Database on MariaDB for Glance.
[root@dlp ~]#
mysql -u root -p

Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 17
Server version: 5.5.44-MariaDB MariaDB Server

Copyright (c) 2000, 2015, 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)]>
flush privileges;

Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
exit

Bye
[4] Configure Glance.
[root@dlp ~]#
vi /etc/glance/glance-api.conf
# line 538: uncomment and change the info ( the one for MariaDB )

connection=
mysql://glance:password@10.0.0.30/glance
# line 974: add like follows

[keystone_authtoken]
# specify Keystone server

auth_uri=http://10.0.0.30:5000
auth_url=http://10.0.0.30:35357
auth_plugin=password
project_domain_id=default
user_domain_id=default
project_name=service
username=glance
# glance user's password

password=servicepassword
# line 1485: add

flavor=keystone
[root@dlp ~]#
vi /etc/glance/glance-registry.conf
# line 363: uncomment and change the info ( the one for MariaDB )

connection=
mysql://glance:password@10.0.0.30/glance
# line 763: add like follows

[keystone_authtoken]
# specify Keystone server

auth_uri=http://10.0.0.30:5000
auth_url=http://10.0.0.30:35357
auth_plugin=password
project_domain_id=default
user_domain_id=default
project_name=service
username=glance
# glance user's password

password=servicepassword
# line 1256: add

flavor=keystone
[root@dlp ~]#
su -s /bin/bash glance -c "glance-manage db_sync"

[root@dlp ~]#
systemctl start openstack-glance-api openstack-glance-registry

[root@dlp ~]#
systemctl enable openstack-glance-api openstack-glance-registry

Matched Content