Unable to increase memory

bramos

New Member
Feb 24, 2017
3
0
1
44
Hi,
I've an issue adding memory to A VM,
even when i change the allocated memory , the server still have Memory :1024Mb

What can I do to resolve this.
Thanks


Memory-allocated.png Server-Memory.png Conf
agent: 1
balloon: 0
bootdisk: scsi0
cores: 2
hotplug: disk,network,usb,memory,cpu
ide2: local:iso/debian-8.6.0-amd64-netinst.iso,media=cdrom,size=247M
memory: 6656
net0: virtio=9A:1F:78:ED:09:0D,bridge=vmbr2
numa: 1
onboot: 1
ostype: l26
protection: 1
scsi0: local:100/vm-100-disk-1.qcow2,size=500G
scsihw: virtio-scsi-pci
smbios1: uuid=c0c85605-d869-4f3e-9044-f9944e2da6bf
sockets: 2
 
Hi,
I've an issue adding memory to A VM,
even when i change the allocated memory , the server still have Memory :1024Mb

What can I do to resolve this.
Thanks


View attachment 4825 View attachment 4826 Conf
agent: 1
balloon: 0
bootdisk: scsi0
cores: 2
hotplug: disk,network,usb,memory,cpu
ide2: local:iso/debian-8.6.0-amd64-netinst.iso,media=cdrom,size=247M
memory: 6656
net0: virtio=9A:1F:78:ED:09:0D,bridge=vmbr2
numa: 1
onboot: 1
ostype: l26
protection: 1
scsi0: local:100/vm-100-disk-1.qcow2,size=500G
scsihw: virtio-scsi-pci
smbios1: uuid=c0c85605-d869-4f3e-9044-f9944e2da6bf
sockets: 2
Hi,
you need an udev-rule inside the VM: /lib/udev/rules.d/80-hotplug-cpu-mem.rules (or /etc/udev/rules.d/80-hotplug-cpu-mem.rules )
Code:
SUBSYSTEM=="cpu", ACTION=="add", TEST=="online", ATTR{online}=="0", ATTR{online}="1"
SUBSYSTEM=="memory", ACTION=="add", TEST=="state", ATTR{state}=="offline", ATTR{state}="online"
see also here: http://pve.proxmox.com/wiki/Hotplug_(qemu_disk,nic,cpu,memory)

Udo
 
Thank you guys,
I've tr
Hi,
you need an udev-rule inside the VM: /lib/udev/rules.d/80-hotplug-cpu-mem.rules (or /etc/udev/rules.d/80-hotplug-cpu-mem.rules )
Code:
SUBSYSTEM=="cpu", ACTION=="add", TEST=="online", ATTR{online}=="0", ATTR{online}="1"
SUBSYSTEM=="memory", ACTION=="add", TEST=="state", ATTR{state}=="offline", ATTR{state}="online"
see also here: http://pve.proxmox.com/wiki/Hotplug_(qemu_disk,nic,cpu,memory)

Udo

Thank you,
Finally it works,
you're the best !!