安装 cloudstack-agent 后 KVM 模块未加载

安装 cloudstack-agent 后 KVM 模块未加载

我按照本指南安装 CloudStack 和 KVM:

https://docs.cloudstack.apache.org/projects/cloudstack-installation/en/latest/qig.html#kvm-setup-and-installation

一切顺利,但在安装 cloudstack-agent 之后:

# yum -y install cloudstack-agent

并按照指南进行配置,当我检查 KVM 是否在我的计算机上正常运行时,我看不到任何结果:

# lsmod | grep kvm

我不知道原因。

当我检查 cloudstack-agent 状态时:

# service cloudstack-agent status
cloudstack-agent dead but subsys locked

日志为:

# tail /var/log/cloudstack/agent/agent.log
...
2017-04-18 12:13:14,205 ERROR [kvm.storage.LibvirtStorageAdaptor] (Agent-Handler-1:null) (logid:) org.libvirt.LibvirtException: XML error: missing pool source name element
...

答案1

本指南仅提供在 KVM 服务器上安装和配置 cloudstack-agent 的步骤。

您需要先在此服务器上安装 KVM:

# yum install kvm qemu-kvm python-virtinst libvirt libvirt-python libguestfs-tools

安装这些软件包后,启动 libvirt 服务并检查 kvm 是否正常工作:

# lsmod | grep kvm

相关内容