glance

Posted jkklearn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了glance相关的知识,希望对你有一定的参考价值。

1 调用API 前应先source  rc 文件,加载用户名密码等环境变量

rc 文件可以在控制面板下载。

 

查询镜像列表
glance image-list
openstack image list

glance image-delete ID
glance image-show ID

创建镜像
openstack image create --disk-format qcow2 --container-format bare --public --file /home/vm/test.qcow2 centos7.qcow2
glance image-create --name centos7img --file /home/vm/test.qcow2 --disk-format qcow2 --container-format bare --progress

 


执行 openstack image list 报500错误
/var/log/glance/api.log  日志中提示 pymysql.err.ProgrammingError) (1146, u"Table ‘glance.images‘ doesn‘t exist"

执行以下命令同步数据库
su -s /bin/sh -c "glance-manage db_sync" glance

以上是关于glance的主要内容,如果未能解决你的问题,请参考以下文章

openstack第三天——Glance

openstack项目day23:glance基础