CentOS 7
Sponsored Link

OpenStack Icehouse : Configure Glance2014/08/31

 
Install and Configure OpenStack Image Service (Glance).
[1] Install Glance.
# install from RDO, EPEL

[root@dlp ~]#
yum --enablerepo=openstack-icehouse,epel -y install openstack-glance
[2] Configure Glance.
# set database ( set any password you like for "password" section )

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

Please enter the password for the 'root' MySQL user:  
# MariaDB root password

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
# line 174 : change like follows ( the one added in 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
# add follows to the end

flavor=keystone
[root@dlp ~]#
vi /etc/glance/glance-api.conf
# line 245: change ( RabbitMQ User and Password )

rabbit_userid=
guest

rabbit_password=
password
# line 644 : change like follows ( the one added in 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
# line 661: add

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

Matched Content