我有一个 KVM 来宾,我想动态更改其内存分配。
目前,要改变客人的记忆,我必须运行:
sudo virsh edit $GUEST_DOMAIN
然后从配置中更改以下部分中显示的第一行
...
<memory unit='KiB'>512000</memory>
<currentMemory unit='KiB'>512000</currentMemory>
<memtune>
<hard_limit unit='KiB'>256000</hard_limit>
</memtune>
...
然后用virsh shutdown
and重启来宾virsh start
。
我一直在尝试使用virsh memtune --hard-limit 512000 --domain $GUEST_ID
(参考),但它似乎没有效果。
我还尝试使用此处的文档从客人内部“膨胀” ,但我不断收到错误消息
balloon: command not found
问题
有没有办法使用来自主机的命令动态调整 KVM 来宾的大小。如果没有,是否至少有一种方法可以使用命令调整内存大小,而不必编辑配置文件(或者可以使用 sed 编辑 virsh 文件)?
额外信息
来宾正在使用 qcow2 稀疏文件。
以下是来自的完整配置sudo virsh edit $GUEST
<domain type='kvm'>
<name>svn.mydomain.com</name>
<uuid>8463ab11-628a-c07c-4366-4f768247934a</uuid>
<memory unit='KiB'>512000</memory>
<currentMemory unit='KiB'>512000</currentMemory>
<memtune>
<hard_limit unit='KiB'>256000</hard_limit>
</memtune>
<vcpu placement='static'>4</vcpu>
<os>
<type arch='x86_64' machine='pc-i440fx-trusty'>hvm</type>
<boot dev='hd'/>
</os>
<features>
<acpi/>
<apic/>
<pae/>
</features>
<clock offset='utc'/>
<on_poweroff>destroy</on_poweroff>
<on_reboot>restart</on_reboot>
<on_crash>restart</on_crash>
<devices>
<emulator>/usr/bin/kvm-spice</emulator>
<disk type='file' device='disk'>
<driver name='qemu' type='raw'/>
<source file='/media/storage/kvm/vms/svn.mydomain.com.img'/>
<target dev='vda' bus='virtio'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
</disk>
<disk type='block' device='cdrom'>
<driver name='qemu' type='raw'/>
<target dev='hdc' bus='ide'/>
<readonly/>
<address type='drive' controller='0' bus='1' target='0' unit='0'/>
</disk>
<controller type='usb' index='0'>
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x2'/>
</controller>
<controller type='pci' index='0' model='pci-root'/>
<controller type='ide' index='0'>
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
</controller>
<interface type='bridge'>
<mac address='52:54:00:a2:4a:f6'/>
<source bridge='kvmbr0'/>
<model type='virtio'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/>
</interface>
<serial type='pty'>
<target port='0'/>
</serial>
<console type='pty'>
<target type='serial' port='0'/>
</console>
<memballoon model='virtio'>
<address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/>
</memballoon>
</devices>
</domain>
你不需要搞砸
<memtune><hard_limit>
。当应用于 KVM 来宾时,这实际上是一个相当危险的设置。我会立即删除该部分。要减少 KVM 来宾现在可以访问的内存量,请更改
<currentMemory>
. 来宾可以拥有的最大值由 指定<memory>
,更改它需要关闭来宾。