Fedora 23
Sponsored Link

OpenStack Kilo : Glance 設定2015/11/12

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

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

+------------+----------------------------------+
| Field      | Value                            |
+------------+----------------------------------+
| email      | None                             |
| enabled    | True                             |
| id         | 9c0c9140fbb848a59ae6ee658682f4da |
| name       | glance                           |
| project_id | f8d301995a9b423b85d3e250336ee6c3 |
| username   | glance                           |
+------------+----------------------------------+

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

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

+-------+----------------------------------+
| Field | Value                            |
+-------+----------------------------------+
| id    | de393fc067984d469b46bc46f156ce30 |
| name  | admin                            |
+-------+----------------------------------+

# glance 用サービスエントリ作成

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

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

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

[root@dlp ~]#
export controller=10.0.0.30
# glance 用エンドポイント作成

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

+--------------+----------------------------------+
| Field        | Value                            |
+--------------+----------------------------------+
| adminurl     | http://10.0.0.30:9292            |
| id           | 913f14134002472f98aa1454d8492a68 |
| internalurl  | http://10.0.0.30:9292            |
| publicurl    | http://10.0.0.30:9292            |
| region       | RegionOne                        |
| service_id   | 4b182b13351d4a0ab8cb479f7f7c6f7a |
| service_name | glance                           |
| service_type | image                            |
+--------------+----------------------------------+
[2] Glance をインストールします。
[root@dlp ~]#
dnf -y install openstack-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 17
Server version: 10.0.20-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] Glance の基本設定です。
[root@dlp ~]#
vi /etc/glance/glance-api.conf
# 344行目:コメント解除し変更 ( MariaDB に登録したもの )

connection=
mysql://glance:password@10.0.0.30/glance
# 439行目:以下のように追記

[keystone_authtoken]
# Keystone サーバーを指定

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 ユーザーのパスワード

password=servicepassword
# 457行目:追記

flavor=keystone
[root@dlp ~]#
vi /etc/glance/glance-registry.conf
# 170行目:コメント解除し変更 ( MariaDB に登録したもの )

connection=
mysql://glance:password@10.0.0.30/glance
# 250行目:以下のように追記

[keystone_authtoken]
# Keystone サーバーを指定

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 ユーザーのパスワード

password=servicepassword
# 268行目:追記

flavor=keystone
[root@dlp ~]#
glance-manage db_sync

[root@dlp ~]#
chown -R glance. /var/log/glance

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

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

関連コンテンツ