Search results

  1. D

    [SOLVED] snapshot stopping VM

    With the fsfreeze-thaw command
  2. D

    [SOLVED] snapshot stopping VM

    From the cmdline of the host : root@pve:~# qm agent 119 fsfreeze-status thawed root@pve:~# qm agent 119 fsfreeze-freeze 5 root@pve:~# qm agent 119 fsfreeze-status frozen root@pve:~# qm agent 119 fsfreeze-thaw 5 root@pve:~# qm agent 119 fsfreeze-status thawed root@pve:~# If you can reproduce...
  3. D

    [SOLVED] snapshot stopping VM

    OK, now that we're sure the issue is when using the guest-agent, you can try to debug a bit more. Try to enable it again and see what's happening if you manually send a guest-fsfreeze-freeze command
  4. D

    [SOLVED] snapshot stopping VM

    Yes, toggling this setting needs a VM reboot to take effect.
  5. D

    [SOLVED] snapshot stopping VM

    Without the qemu agent, the backup will be made the same way. But without the FS freeze in the guest. So the FS might need an fsck in case of a restore (it'll be in the same state as it would be if there was a power cut at the time of the backup). The qemu agent just make this a little bit more...
  6. D

    [SOLVED] snapshot stopping VM

    Try to disable the qemu-agent option from proxmox and see if the problem disappear. This would confirm an issue with the freeze operation ran by the guest, and will help debuging it further.
  7. D

    [SOLVED] snapshot stopping VM

    OK but is the agent enabled and running ? Try to disable the option in Proxmox and check if the issue is still present.
  8. D

    [SOLVED] snapshot stopping VM

    Would you happen to have enabled the qemu guest agent feature while qemu guest agent is not installed in the guest ?
  9. D

    Inconsistency between PVE VM memory vs actual

    Sorry, my bad, I miss read your top screenshot. It's indeed ~7.5GB of free mem, not buffers (which only account 22M). Not sure where the diff comes from. Probably something to do with the way the FreeBSD kernel frees memory
  10. D

    Inconsistency between PVE VM memory vs actual

    Because caches and buffers are not accounted in the used memory from the guest POV, but is still used memory from the host POV (you can see ~7.5GB being used as buffers).
  11. D

    Problem with ballooning

    This has always been the case. That's the purpose of ballooning, so I'm not sure I understand the problem
  12. D

    Accessing OVH RBD service via secondary NIC doesn't work

    My 2 cents : give up now. OVH CDA is just not up to the task (I tried). It's far too slow to be used by anything, even lightly loaded test VM
  13. D

    Corrupted files after snapshot rollback

    Nop, sorry. Have no idea where this corruption may come from
  14. D

    can't make snapshot with 'host' configuration

    No. All disks must support snapshots. There's no way for now to exclude a disk from a snapshot
  15. D

    can't make snapshot with 'host' configuration

    This has nothing to do with the cpu model but it's about the storage : you are using raw files, which do not support snapshots. Check https://pve.proxmox.com/wiki/Storage
  16. D

    Corrupted files after snapshot rollback

    What storage are you using ? Are you sure files were not already corrupted ? Any backup to compare the affected files ?
  17. D

    Need help with vmware migration

    Instead of manually converting the image and injecting it with dd, I'd recommend using qm importdisk (see man qm) which will do nearly everything required
  18. D

    Change Cluster Quorum

    I don't think so. You would still risk split-braining your /etc/pve FS, so it wouldn't be safe at all
  19. D

    [SOLVED] zfs - from pool to VM-filesystem?

    No. For VM, Proxmox creates zvols, which are presented as raw block devices. You must use another FS inside the guest (except for very specific use cases). You will not loose all the benefit of ZFS : snapshot, compression etc... can be managed at the proxmox level
  20. D

    What is the best way to use self hosted gitlab on proxmox?

    I'd avoid installing stuff on proxmox itself (especially Docker which will probably insert its own iptables rules and mess up the ones from Proxmox). Install Gitlab in a guest. Either a VM or a container (or a Docker inside a VM). Choose the guest OS you're confortable with.