我在 Dashbord 中的图像状态始终是 already line
My image status in the Dashbord always is already line up
我在 Dashbord 中的图像状态总是已经排队。
在虚拟机中我使用命令列出它,它存在:
[root@ha-node1 neutron]# glance image-list
+--------------------------------------+---------------------+
| ID | Name |
+--------------------------------------+---------------------+
| 303f912b-a7e6-45f8-8219-7dc406d8e111 | cirros-0.3.4-x86_64 |
+--------------------------------------+---------------------+
如果我从仪表板创建实例,则没有图像。
终于解决了
确保图片文件权限为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
然后重新上传应该可以正常工作的图像。
我在 Dashbord 中的图像状态总是已经排队。
在虚拟机中我使用命令列出它,它存在:
[root@ha-node1 neutron]# glance image-list
+--------------------------------------+---------------------+
| ID | Name |
+--------------------------------------+---------------------+
| 303f912b-a7e6-45f8-8219-7dc406d8e111 | cirros-0.3.4-x86_64 |
+--------------------------------------+---------------------+
如果我从仪表板创建实例,则没有图像。
终于解决了
确保图片文件权限为
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
然后重新上传应该可以正常工作的图像。