The OpenStack Image Service acts as a registry for virtual disk images. Users can add new images or take a snapshot of an image from an existing server for immediate storage. Use snapshots for back up and as templates to launch new servers. You can store registered images in Object Storage or in other locations. For example, you can store images in simple file systems or external web servers.
![]() | Note |
|---|---|
This procedure assumes you set the appropriate environment variables to your credentials as described in the section called “Verify the Identity Service installation”. |
Install the Image Service on the controller node:
# apt-get install glance python-glanceclient
The Image Service stores information about images in a database. The examples in this guide use the MySQL database that is used by other OpenStack services.
Configure the location of the database. The Image Service provides the
glance-apiandglance-registryservices, each with its own configuration file. You must update both configuration files throughout this section. ReplaceGLANCE_DBPASSwith your Image Service database password.Edit
/etc/glance/glance-api.confand/etc/glance/glance-registry.confand change the[DEFAULT]section.... [DEFAULT] ... # SQLAlchemy connection string for the reference implementation # registry server. Any valid SQLAlchemy connection string is fine. # See: http://www.sqlalchemy.org/docs/05/reference/sqlalchemy/connections.html#sqlalchemy.create_engine sql_connection = mysql://glance:GLANCE_DBPASS@
controller/glance ...By default, the Ubuntu packages create an SQLite database. Delete the
glance.sqlitefile created in the/var/lib/glance/directory so that it does not get used by mistake.Use the password you created to log in as root and create a
glancedatabase user:# mysql -u root -p mysql> CREATE DATABASE glance; mysql> GRANT ALL PRIVILEGES ON glance.* TO 'glance'@'localhost' \ IDENTIFIED BY '
GLANCE_DBPASS'; mysql> GRANT ALL PRIVILEGES ON glance.* TO 'glance'@'%' \ IDENTIFIED BY 'GLANCE_DBPASS';Create the database tables for the Image Service:
# glance-manage db_sync
Create a
glanceuser that the Image Service can use to authenticate with the Identity Service. Choose a password and specify an email address for theglanceuser. Use theservicetenant and give the user theadminrole.# keystone user-create --name=glance --pass=
GLANCE_PASS\ --email=[email protected]# keystone user-role-add --user=glance --tenant=service --role=adminConfigure the Image Service to use the Identity Service for authentication.
Edit the
/etc/glance/glance-api.confand/etc/glance/glance-registry.conffiles. ReplaceGLANCE_PASSwith the password you chose for theglanceuser in the Identity Service.Add the following keys under the
[keystone_authtoken]section:[keystone_authtoken] ... auth_uri = http://
controller:5000 auth_host =controllerauth_port = 35357 auth_protocol = http admin_tenant_name = service admin_user = glance admin_password =GLANCE_PASSAdd the following key under the
[paste_deploy]section:[paste_deploy] ... flavor = keystone
Add the credentials to the
/etc/glance/glance-api-paste.iniand/etc/glance/glance-registry-paste.inifiles.Edit each file to set the following options in the
[filter:authtoken]section and leave any other existing option as it is.[filter:authtoken] paste.filter_factory=keystoneclient.middleware.auth_token:filter_factory auth_host=controller admin_user=glance admin_tenant_name=service admin_password=
GLANCE_PASSRegister the Image Service with the Identity Service so that other OpenStack services can locate it. Register the service and create the endpoint:
# keystone service-create --name=glance --type=image \ --description="Glance Image Service"
Use the
idproperty returned for the service to create the endpoint:# keystone endpoint-create \ --service-id=
the_service_id_above\ --publicurl=http://controller:9292 \ --internalurl=http://controller:9292 \ --adminurl=http://controller:9292Restart the
glanceservice with its new settings.# service glance-registry restart # service glance-api restart

![[Note]](../common/images/admon/note.png)
