一、我重启了该机器,之后想删除没有创建成功的虚拟机(没有打开cpu的vt),结果发现状态一直为deleting状态。在这个状态下创建虚拟机也失败。 二、分析:在/var/log/nova/nova-compute.log的log找到如下的信息: --- 2012-08-13 14:30:45 CRITICAL nova [-] Instance instance-00000002 could not be found. --...
(1)、进入数据库 mysql-uroot –p (2)、查看数据库信息 mysql>show databases; (3)、进入cinder数据库 mysql> use cinder; (4)、查看cinder数据库表信息 (5)查看error_deleting状态volumes mysql> select status,id from volumes wherestatus='error_deleting'; (6)变更error_deleting状态 mysql>update volumes...
OpenStack 删除虚拟机磁盘失败。 告警信息 无告警信息。 处理过程 1、登录控制节点,导入环境变量。使用命令cinder list --al-t | grep "虚拟机名称",查询当前卷的状态,发现是error_deleting。 2、遇见此类error_deleting状态的卷,需要先将其重置未正常状态,使用命令cinder reset-state "卷ID"将卷从状态重置为avai...
Attaching --> Error In-use --> Detaching Detaching --> Available Detaching --> Error Available --> Deleting Deleting --> Error Deleting --> [*] Error --> [*] 上述状态图中,创建卷的初始状态为Creating,表示正在创建卷。创建成功后,卷的状态将变为Available,表示卷可用。卷可以被挂载到虚拟机上...
1、FS后台删除卷失败,处于error_deleting状态 2、查询gaussdb的主节点 cps template-instance-list --service gaussdb gaussdb 3、后台登陆gaussdb所在的节点,执行su - gaussdba,执行gsql cinder 密码默认为FusionSphere123,执行update volumes set deleted='t' where id='<volume-id>'; ...
可选的值目前只支持:“available”,“error”,“restoring”,“creating”,“deleting”,“error_restoring”。 sort_key 否 string 按属性排序。有效值为name、status、container_format、disk_format、size、id、created_at、updated_at。默认值为created_at。API使用sort_key属性值的自然排序方向。 sort_dir 否 ...
OpenStack volumes can be in the following states: "available”, “error”, “creating”, “deleting”, “in-use”, “attaching”, “detaching”, “error_deleting” or “maintenance”. cinder reset-state --attach-status detached $volume-ID #修改卷状态为detached,解绑 ...
Issue When deleting the instances in large/dynamic OpenStack environment (hypervisors with several TB of RAM and high instances create/delete rate), some of them occasionally fail to be removed with the error: Raw libvirtError: Failed to terminate process 29480 with SIGKILL: Device or resource ...
500 Internal Server Error Failed to complete the request because of an internal service error. 501 Not Implemented Failed to complete the request because the server does not support the requested function. 502 Bad Gateway Failed to complete the request because the request is invalid. 503 Service ...
和 删除 OpenStack Nova Volume 时遇到的 error_deleting 问题 这篇文章提到的解决办法一样,直接操作数据库来删除这2条僵尸实例的记录。登录 mysql,使用 nova 数据库,找出要删除 instance 的 id,然后删除:mysql -u root -p Enter password:mysql> use nova;mysql> select * from instances;mysql...