KVM - 现场改变来宾记忆

KVM - 现场改变来宾记忆

我有一个 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 shutdownvirsh 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>

答案1

你不需要搞砸<memtune><hard_limit>。这实际上是一个相当应用于 KVM 客户机时的危险设置。我会立即删除该部分。

但是,强烈建议 QEMU 和 KVM 用户不要设置此限制,因为如果猜测值太低,域可能会被内核杀死。确定进程运行所需的内存是一项不可判定问题

要减少 KVM 客户机现在可以访问的内存量,请更改<currentMemory>。客户机可以拥有的最大内存量由 指定<memory>,更改它需要关闭客户机。

相关内容