我在Dashbord中的图像状态始终已经排成一行

时间:2017-08-04 06:39:35

标签: openstack openstack-glance

我在Dashbord中的图像状态始终已排成一行。

enter image description here

在VM中我使用命令列出它,它存在:

[root@ha-node1 neutron]# glance image-list 
+--------------------------------------+---------------------+
| ID                                   | Name                |
+--------------------------------------+---------------------+
| 303f912b-a7e6-45f8-8219-7dc406d8e111 | cirros-0.3.4-x86_64 |
+--------------------------------------+---------------------+

如果我从仪表板创建实例,则没有图像。

enter image description here

1 个答案:

答案 0 :(得分:0)

最后我解决了它。

  1. 确保图片文件权限为glance:glance

    chown glance:glance cirros-0.3.4-x86_64-disk.img

  2. 确保图像存储目录对glance:glance的权限:

    chown -R glance:glance /var/lib/glance/images

  3. /etc/glance/glance-api.conf

    [glance_store]下,我改变了这个商店:

    stores = file,http,glance.store.filesystem.Store,glance.store.http.Store

  4. 然后重新上传它应该工作的图像。