CloudStack源码阅读与问题解决----SSVM启动条件

在CloudStack中遇到SSVM无法启动时,分析日志显示'Zone 1 is not ready to launch secondary storage VM yet'。启动SSVM前需通过查询确认:存在System类型的模板,并匹配主机的hypervisor_type。若未找到模板,需检查system template是否已下载;如无secondary storage pool,需为zone建立。当所有条件满足,CS将启动SSVM。本文还涉及CloudStack环境重置、RDP访问、主存储问题等。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

        在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工作。


        CloudStack环境如何推到重来
CloudStack如何进行RDP(远程桌面)访问,如何登陆系统虚拟机

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

        CloudStack安装及使用过程中的几个常见问题


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值