欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

CloudStack 创建主存储失败解决方案

程序员文章站 2023-11-19 13:58:16
cloudstack创建主存储失败(sr已经被使用),删除sr后成功         &n...

cloudstack创建主存储失败(sr已经被使用),删除sr后成功

           由于最近工程需要用到这个东西,于是乎,在网上找了些资料解决了cloudstack创建主存储失败(sr已经被使用),删除sr后成功,的问题,这里就记录下:

创建主存储时,可能会发生创建存储pool失败(sr已经被使用,重装cloudstack management后可能发生此问题),错误提示如下:

 can not create storage pool through host 1 due to catch exception 
com.cloud.utils.exception.cloudruntimeexception, create storagepool failed due to
 com.cloud.utils.exception.cloudruntimeexception:
 there is a sr using the same configuration server:10.217.5.192, serverpath:/home/export/primary for 
pool c9c0319f-33f0-3494-9ada-4d7a2f1dafd4on host:09b3515e-447e-406f-869a-239386d5fe90 
on host:09b3515e-447e-406f-869a-239386d5fe90 pool: 10.217.5.192/home/export/primary

失败原因通常是因为已经在host里创建过cs,到重装之前uuid为09b3515e-447e-406f-869a-239386d5fe90的host里删除c9c0319f-33f0-3494-9ada-4d7a2f1dafd4的sr,然后再创建主存储就没有问题了。

在xenserver里删除sr方法如下

1. 首先得到sr的uuid

xe sr-list name-label=c9c0319f-33f0-3494-9ada-4d7a2f1dafd4

2. 使用uuid获得物理块设备列表,可能有多个。

xe pbd-list sr-uuid= sr-uuid-from-step-1

3. 卸载物理块设备,如有多个,需要执行多次

xe pbd-unplug uuid=pbd-uuid-from-step-2

4. 销毁物理块设备,如有多个,需要执行多次

xe pbd-destroy uuid=pbd-uuid-from-step-2

5. 删除sr

xe sr-forget uuid=sr-uuid-from-step-1

另外,此问题可以在重新安装前,查询出storage_pool里的sr(select uuid from storage_pool;),然后到相应host(通常是ssvm所在的host里)里删除相关sr。

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!