Ubuntu 14.04
Sponsored Link

OpenStack Mitaka (三鷹) : Glance 設定2016/04/20

 
OpenStack Image Service(Glance)をインストールします。
[1] Keystone に Glance 用のユーザー等々を登録しておきます。
# glance ユーザー作成 (service プロジェクト所属)

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

+--------------------+----------------------------------+
| Field              | Value                            |
+--------------------+----------------------------------+
| default_project_id | 0aa29b9e087e44358ca8a598b4ef39b4 |
| domain_id          | e547aee8ce3a44958e7a53b32f2bd0ae |
| enabled            | True                             |
| id                 | b74a82597fb740dd9bd4e76a4a128e8a |
| name               | glance                           |
+--------------------+----------------------------------+

# glance ユーザーを admin ロール に加える

root@dlp:~#
openstack role add --project service --user glance admin
# glance 用サービスエントリ作成

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

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

# 自ホストを定義しておく

root@dlp:~#
export controller=10.0.0.30
# glance 用エンドポイント作成 (public)

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

+--------------+----------------------------------+
| Field        | Value                            |
+--------------+----------------------------------+
| enabled      | True                             |
| id           | 7795f5f6db7242d3aa675bf5fb9e07cc |
| interface    | public                           |
| region       | RegionOne                        |
| region_id    | RegionOne                        |
| service_id   | 1418e3baa47c4d2dbbff84bc881b1227 |
| service_name | glance                           |
| service_type | image                            |
| url          | http://10.0.0.30:9292            |
+--------------+----------------------------------+

# glance 用エンドポイント作成 (internal)

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

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

# glance 用エンドポイント作成 (admin)

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

+--------------+----------------------------------+
| Field        | Value                            |
+--------------+----------------------------------+
| enabled      | True                             |
| id           | 6da1174f48194aadb6be5e12524ab465 |
| interface    | admin                            |
| region       | RegionOne                        |
| region_id    | RegionOne                        |
| service_id   | 1418e3baa47c4d2dbbff84bc881b1227 |
| service_name | glance                           |
| service_type | image                            |
| url          | http://10.0.0.30:9292            |
+--------------+----------------------------------+
[2] Glance をインストールします。
root@dlp:~#
apt-get -y install glance
[3] Glance 用のユーザーとデータベースを MariaDB に登録しておきます。
root@dlp:~#
mysql -u root -p

Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 40
Server version: 5.5.46-MariaDB-1ubuntu0.14.04.2 (Ubuntu)

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] Glance の基本設定です。
root@dlp:~#
mv /etc/glance/glance-api.conf /etc/glance/glance-api.conf.org

root@dlp:~#
vi /etc/glance/glance-api.conf
# 以下の内容で新規作成

[DEFAULT]
bind_host = 0.0.0.0
notification_driver = noop

[glance_store]
default_store = file
filesystem_store_datadir = /var/lib/glance/images/

[database]
# MariaDB 接続情報
connection = mysql+pymysql://glance:password@10.0.0.30/glance

# keystone 認証情報
[keystone_authtoken]
auth_uri = http://10.0.0.30:5000
auth_url = http://10.0.0.30:35357
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

root@dlp:~#
chmod 644 /etc/glance/glance-api.conf

root@dlp:~#
chown glance. /etc/glance/glance-api.conf
root@dlp:~#
mv /etc/glance/glance-registry.conf /etc/glance/glance-registry.conf.org

root@dlp:~#
vi /etc/glance/glance-registry.conf
# 以下の内容で新規作成

[DEFAULT]
bind_host = 0.0.0.0
notification_driver = noop

[database]
# MariaDB 接続情報
connection = mysql+pymysql://glance:password@10.0.0.30/glance

# keystone 認証情報
[keystone_authtoken]
auth_uri = http://10.0.0.30:5000
auth_url = http://10.0.0.30:35357
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

root@dlp:~#
chmod 644 /etc/glance/glance-registry.conf

root@dlp:~#
chown glance. /etc/glance/glance-registry.conf
root@dlp:~#
su -s /bin/bash glance -c "glance-manage db_sync"

root@dlp:~#
initctl restart glance-api

glance-api start/running, process 16939
root@dlp:~#
initctl restart glance-registry

glance-registry start/running, process 16963
関連コンテンツ