Search results

  1. C

    Backup of VM failed - backup write data failed: failed: ENOSPC: No space left on device

    I understand. To me, it seems these are two different approaches to avoid running out of space. With quotas, one just needs to make sure other datasets don’t consume all the available space (that’s why I apply quotas to all datasets). Otherwise, write operations may fail (even if the quota is...
  2. C

    Backup of VM failed - backup write data failed: failed: ENOSPC: No space left on device

    Why not use zfs quota? Maybe I'm missing something, but seems like a simpler approach to me (see: https://forum.proxmox.com/threads/proxmox-backup-server-3-1-2-set-zfs-quotas.139917/post-625317). I set up a quota for each dataset and call it a day.
  3. C

    VM Reboot Issue - VM stuck on Proxmox start boot option screen

    Have you tried by recreating the EFI disk? https://forum.proxmox.com/threads/vm-reboot-issue-vm-stuck-on-proxmox-start-boot-option-screen.154925/post-712527
  4. C

    corosync-qdevice - security library: bad database

    As per the documentation[0]: Adding/Deleting Nodes After QDevice Setup If you want to add a new node or remove an existing one from a cluster with a QDevice setup, you need to remove the QDevice first. After that, you can add or remove nodes normally. Once you have a cluster with an even node...
  5. C

    [SOLVED] networking issue

    Hi, vlan111 has an incorrect vlan-raw-device. It should be vmnetbr, not vlan111 itself. Currently, vlan111 is not linked to the physical interface through the bridge, so it won’t work.
  6. C

    Windows Server 2019 not booting after restore to Proxmox via Veeam

    Maybe you're hitting this bug: https://forum.proxmox.com/threads/veeam-silent-data-corruption.155212/post-718208, have you tried with the last version of PVE plugin for Veeam?
  7. C

    Problems activating licensed proxmox.

    You have to click on "Reissue" in order to free the license from the old server. Then, add it to the new server.
  8. C

    VM Reboot Issue - VM stuck on Proxmox start boot option screen

    As @itNGO said, I've recreated EFI disk and it worked. I've also tried to recreate TPM state, but with EFI disk was enough. The only thing that bothers me is why the VM boots one time after restore from backup and then refuses to boot...
  9. C

    VM Reboot Issue - VM stuck on Proxmox start boot option screen

    Same here, fortunately it is happening on a virtualized test cluster. I've restored a Windows 2019 VM from a backup to local-zfs, it booted the first time, moved it to Ceph storage and from the second boot onwards it got stuck at "Start boot option...", with VM's CPU at 100%. Just to make...
  10. C

    [SOLVED] Proxmox 6.8.x Kernels Break Networking

    This change affected to enterprise users too, so even with a subscription you would be in the same situation. In fact, the change it's not Proxmox related but kernel related. I get your point, maybe a warning before upgrading in case of breaking changes could be useful.
  11. C

    [SOLVED] Proxmox 6.8.x Kernels Break Networking

    It is worth to check "breaking changes" section in the Roadmap everytime a new major/minor version of Promxox is released, just in case some issues like that arise. In this case, a workaround was to pin network interface names based on its mac address...
  12. C

    [SOLVED] Proxmox 6.8.x Kernels Break Networking

    Hi! Check breaking changes for the latest kernel: https://pve.proxmox.com/wiki/Roadmap#Proxmox_VE_8.2 Boot with the newest kernel and check your interface names. If a p0 has been added to the end of the interfaces, change its name in /etc/network/interfaces (backup this file before doing the...
  13. C

    Loosing space on PVE VM Store

    Thanks for pointing that out, I wasn't aware of this option and I thought it was the same as with volblocksize.
  14. C

    Loosing space on PVE VM Store

    Unfortunately you will need to backup and recover your VMs to be able to benefit from thin provisioning. Another option is to move disks to a non-zfs storage and then move them back to your ZFS pool.
  15. C

    [HELP] Issue after an upgrade from v8.1.10 on a HP Gen8 micro server

    You should be able to select an older kernel going to Advanced Options on the Grub blue screen,as esi_y said:
  16. C

    [HELP] Issue after an upgrade from v8.1.10 on a HP Gen8 micro server

    Are you able to boot with an older kernel? If so, you may be affected with one of the breaking changes in PVE 8.2. You can check them here: https://pve.proxmox.com/wiki/Roadmap#Proxmox_VE_8.2
  17. C

    Any activity on HDD is become veeeery slow

    It seems your disk is starting to fail, since logs show Raw_Read_Error_Rate and Hardware_ECC_Recovered values are increasing. I would definitely replace the disk. Don't use apt-get upgrade. Use always apt dist-upgrade to avoid dependency problems.
  18. C

    Run replication manually

    Timestamp of last_sync and last_try is expressed in Unix time format [0] [1]. In your script, you could store the timestamp before you start the snapshot with schedule_now , and when the snapshot is done check if last_sync value is greater than the one you've stored. Checking fail_count would...
  19. C

    Run replication manually

    You can do it through scripting, using the API from the node itself (pvesh) https://pve.proxmox.com/pve-docs/api-viewer/#/nodes/{node}/replication/{id} An option would be to launch the replication using schedule now and then check its status through status.
  20. C

    Backup VMs from one cluster to another one

    This may be what are you looking for, if you have Ceph on both sides: https://pve.proxmox.com/wiki/Ceph_RBD_Mirroring