source admin-openrc.sh


yum install openstack-glance python-glanceclient -y


openstack-config --set /etc/glance/glance-api.conf database connection mysql://glance:000000@controller/glance

openstack-config --set /etc/glance/glance-registry.conf database connection mysql://glance:000000@controller/glance


su -s /bin/sh -c "glance-manage db_sync" glance


keystone user-create --name=glance --pass=000000 --email=glance@localhost

keystone user-role-add --user=glance --tenant=service --role=admin


openstack-config --set /etc/glance/glance-api.conf keystone_authtoken auth_uri http://controller:5000

openstack-config --set /etc/glance/glance-api.conf keystone_authtoken auth_host controller

openstack-config --set /etc/glance/glance-api.conf keystone_authtoken auth_port 35357

openstack-config --set /etc/glance/glance-api.conf keystone_authtoken auth_protocol http

openstack-config --set /etc/glance/glance-api.conf keystone_authtoken admin_tenant_name service

openstack-config --set /etc/glance/glance-api.conf keystone_authtoken admin_user glance

openstack-config --set /etc/glance/glance-api.conf keystone_authtoken admin_password 000000

openstack-config --set /etc/glance/glance-api.conf paste_deploy flavor keystone


openstack-config --set /etc/glance/glance-registry.conf keystone_authtoken auth_uri http://controller:5000

openstack-config --set /etc/glance/glance-registry.conf keystone_authtoken auth_host controller

openstack-config --set /etc/glance/glance-registry.conf keystone_authtoken auth_port 35357

openstack-config --set /etc/glance/glance-registry.conf keystone_authtoken auth_protocol http

openstack-config --set /etc/glance/glance-registry.conf keystone_authtoken admin_tenant_name service

openstack-config --set /etc/glance/glance-registry.conf keystone_authtoken admin_user glance

openstack-config --set /etc/glance/glance-registry.conf keystone_authtoken admin_password 000000

openstack-config --set /etc/glance/glance-registry.conf paste_deploy flavor keystone


keystone service-create --name=glance --type=p_w_picpath --description="OpenStack Image Service"


keystone endpoint-create \

   --service-id=$(keystone service-list | awk '/ p_w_picpath / {print $2}') \

   --publicurl=http://controller:9292 \

   --internalurl=http://controller:9292 \

   --adminurl=http://controller:9292


service openstack-glance-api restart

service openstack-glance-registry restart

chkconfig openstack-glance-api on

chkconfig openstack-glance-registry on



cd /var/ftp/iaas/p_w_picpaths/

file centos_65_x86_6420140327.qcow2 

glance p_w_picpath-create --name CentOS-6.5-x86_64 --disk-format qcow2 --container-format bare --is-public True --progress < centos_65_x86_6420140327.qcow2


glance p_w_picpath-list