我在Dashbord中的图像状态始终已排成一行。
在VM中我使用命令列出它,它存在:
[root@ha-node1 neutron]# glance image-list
+--------------------------------------+---------------------+
| ID | Name |
+--------------------------------------+---------------------+
| 303f912b-a7e6-45f8-8219-7dc406d8e111 | cirros-0.3.4-x86_64 |
+--------------------------------------+---------------------+
如果我从仪表板创建实例,则没有图像。
答案 0 :(得分:0)
最后我解决了它。
确保图片文件权限为glance:glance
:
chown glance:glance cirros-0.3.4-x86_64-disk.img
确保图像存储目录对glance:glance
的权限:
chown -R glance:glance /var/lib/glance/images
在/etc/glance/glance-api.conf
:
在[glance_store]
下,我改变了这个商店:
stores = file,http,glance.store.filesystem.Store,glance.store.http.Store
然后重新上传它应该工作的图像。