Fedora 20
Sponsored Link

OpenStack Havana - Glance 設定2013/12/23

 
OpenStack Image Service(Glance)をインストールします。
[1] Glance インストール
[root@dlp ~]#
yum -y install openstack-glance
[2] Glance の基本設定
# データベース設定 (「password」は任意のパスワードを設定)

[root@dlp ~]#
openstack-db --init --service glance --password password

Please enter the password for the 'root' MySQL user:  
# MariaDB root パスワード

Verified connectivity to MySQL.
Creating 'glance' database.
Updating 'glance' database password in /etc/glance/glance-registry.conf /etc/glance/glance-api.conf
Initializing the glance database, please wait...
Complete!
[root@dlp ~]#
vi /etc/glance/glance-registry.conf
# 84行目:全てコメント解除して以下のように変更 (Keystone に登録した値)

[keystone_authtoken]
auth_host =
10.0.0.30

auth_port = 35357
auth_protocol = http
admin_tenant_name =
service

admin_user =
glance

admin_password =
servicepassword
# 最終行に追記

flavor = keystone
[root@dlp ~]#
vi /etc/glance/glance-api.conf
# 205行目:コメント解除し変更

notifier_strategy=
rabbit
# 209行目:RabbitMQ サーバーに変更

rabbit_host =
10.0.0.30
# 212,123行目:RabbitMQ 認証IDとパスワードを指定

rabbit_userid =
guest

rabbit_password =
password
# 430行目:全てコメント解除して以下のように変更 (Keystone に登録した値)

[keystone_authtoken]
auth_host =
10.0.0.30

auth_port = 35357
auth_protocol = http
admin_tenant_name =
service

admin_user =
glance

admin_password =
servicepassword
# 最終行に追記

flavor = keystone
[root@dlp ~]#
for service in api registry; do
systemctl start openstack-glance-$service
systemctl enable openstack-glance-$service
done

関連コンテンツ