小知识:CloudStack SSVM启动条件源码阅读与问题解决方法

CloudStack SSVM启动条件源码阅读与问题解决方法:

 在CloudStack建立zone的时候,经常遇到SSVM不启动,或者根本就没有SSVM的情况,分析CloudStack日志,会发现有“Zone 1 is not ready to launch secondary storage VM yet”打印,意思是zone还未准备好启动SSVM。

通过查询CloudStack源代码,发现启动SSVM前有如下检查:

        获取Zone里的template。

        select a.* from vm_template a, host h where h.type = Routing and h.data_center_id = 1 and a.type = System and a.hypervisor_type = h.hypervisor_type limit 1;   

        如果没有获取到,会打印如下警告:

        Warn: Zone host is ready, but secondary storage vm template  3 is not ready on secondary storage: 1

        解决办法:检查system template是否已经下载完成(注意,要下载自己环境的hypervisor的system template)。

        获取zone的二级存储。

        select * from host where type = SecondaryStorage and data_center_id = 1;  # host id is 3

        如果没有获取到,会打印如下警告:

        Warn: No secondary storage available in zone 1, wait until it is ready to launch secondary storage vm

        解决办法:为zone 1建立secondary storage pool。

        获取template和host的关联。

        select * from template_host_ref where host_id = 3 and template_id = 1 and download_state = DOWNLOADED; # host id and template id is query by before.

        如果没有获取到,会打印如下警告:

        Warn: Zone host is ready, but secondary storage vm template  3 is not ready on secondary storage: 1

        如果secondary storage是NFS,可以通过mount来检查secondary storage是否能够正常工作,如果secondary storage没有问题,则只能等待CloudStack自动关联上。

        获得host的主存储。

        SELECT p.data_center_id,  count(ph.host_id) count  FROM storage_pool p, storage_pool_host_ref ph WHERE p.id = ph.pool_id AND p.data_center_id = 1 GROUP by p.data_center_id;

        主存储数量需要大于0,如果等于0,会打印如下警告:

        Warn: Primary storage is not ready, wait until it is ready to launch secondary storage vm

没有问题后,CS会打印:Zone  1 is ready to launch secondary storage VM。 CS将会启动 start secondary storage VM工作。

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

声明: 猿站网有关资源均来自网络搜集与网友提供,任何涉及商业盈利目的的均不得使用,否则产生的一切后果将由您自己承担! 本平台资源仅供个人学习交流、测试使用 所有内容请在下载后24小时内删除,制止非法恶意传播,不对任何下载或转载者造成的危害负任何法律责任!也请大家支持、购置正版! 。本站一律禁止以任何方式发布或转载任何违法的相关信息访客发现请向站长举报,会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。本网站的资源部分来源于网络,如有侵权烦请发送邮件至:2697268773@qq.com进行处理。
建站知识

小知识:VMware中虚拟机的NAT设置方法

2023-4-21 16:40:57

建站知识

小知识:CloudStack 安装及使用过程中常见问题汇总

2023-4-21 16:55:39

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索