cloudstack:Failed to delete storage pool

简介:

一、说明

cloudstack新建资源池的时候,出现错误,因此想着把之前的信息全部删除,然后再次新建资源池。当删除主存储的时候,出现“Failed to delete storage pool”。

blob.png


二、解决方法

1
2
3
4
5
6
7
8
9
10
11
MariaDB [(none)]> use cloud;
MariaDB [cloud]>  select  pod_id from storage_pool;
+--------+
| pod_id |
+--------+
|   NULL |
|      1 |
+--------+
2 rows  in  set  (0.00 sec)
MariaDB [cloud]> update storage_pool  set  removed=now() where pod_id=1;
MariaDB [cloud]> update volumes  set  removed=now() where pod_id=1;

然后再次删除,可以删除主存储池了,问题得到解决











本文转自 冰冻vs西瓜 51CTO博客,原文链接:http://blog.51cto.com/molewan/2053620,如需转载请自行联系原作者
目录
相关文章
|
25天前
|
Kubernetes 容器 Perl
error: unable to retrieve the complete list of server APIs: metrics.k8s.io/v1beta1: the server is cu
error: unable to retrieve the complete list of server APIs: metrics.k8s.io/v1beta1: the server is cu
21 0
|
关系型数据库 MySQL Java
解决方案 --Failed to initialize JPA EntityManagerFactory: Unable to create requested service
解决方案 --Failed to initialize JPA EntityManagerFactory: Unable to create requested service
解决方案 --Failed to initialize JPA EntityManagerFactory: Unable to create requested service
|
MySQL 关系型数据库 Shell
Unit mysql.service failed to load: No such file or directory的解决办法
Failed to issue method call: Unit mysql.service failed to load: No such file or directory的解决办法 1、软件环境: OpenSUSE 13.
3244 0
openstack创建实例时aborted: Block Device Mapping is Invalid
问题产生原因:          直接先不创建新卷,点击否,待实例创建完毕后再分配卷。
1838 0