Search results

  1. Stefan_R

    trying to acquire cfs lock 'file-replication_cfg

    If you are getting the error you posted, your nodes are certainly not in sync. Otherwise it would be working. Check and post the output of pvecm status (on all nodes) please.
  2. Stefan_R

    trying to acquire cfs lock 'file-replication_cfg

    Your node has fallen off the quorum, i.e. the cluster. As such it is inoperable. Check your cluster networking, make sure the nodes can reach it other (ping, ssh), and see if there's anything in the logs about loosing quorum preceding the entries you posted.
  3. Stefan_R

    cant start vm Failed to connect to server

    Your PVE version is way outdated. Please try upgrading your system... Personal note: If you're already experiencing issues, it may be a good idea to schedule a maintainence window, make backups of your VMs and just reinstall PVE. If you want a go at fixing it like this, I can't be of much...
  4. Stefan_R

    Firewall Bug oder Feature

    Der Reihe nach: Problem ist bekannt, wurde auch schon auf der pve-devel Liste diskutiert. Siehe u.a.: https://lists.proxmox.com/pipermail/pve-devel/2021-October/050267.html https://lists.proxmox.com/pipermail/pve-devel/2021-September/049936.html In welcher config? Damit die firewall...
  5. Stefan_R

    Feature suggestion: webgui to show CVE info

    By default, we ensure that our shipped kernel has protections enabled against all known vulnerabilities. You can always confirm this yourself via the commandline: lscpu | grep "Vulnerability". If you want to further discuss a GUI implementation (I personally don't think that's necessary...)...
  6. Stefan_R

    Lost quorum and all nodes were reset during a disjoin!

    Why would you expect node50 to be reset? Did you follow the recommended procedure from our documentation? Note especially this part:
  7. Stefan_R

    Backup Restore

    Das liegt wahrscheinlich an overlayfs. Docker verwendet das, um die Ordnerstruktur für die container zu generieren, ohne mehrere Kopien davon zu benötigen. So wies aussieht werden die dann bei deinem Backup als normale files weggespeichert, aber beim restore ist overlayfs natürlich nicht...
  8. Stefan_R

    Is it possible to use SR-IOV VF as the management interface?

    SR-IOV devices are detected as normal, seperate PCI NICs (in userspace, for all intents and purposes). So yes, that should be possible, though of course in a VLAN (and not physical port) based configuration, you will be sharing bandwidth.
  9. Stefan_R

    Wie ein vma.lzo Image von Festplatte in Proxmox 7 importieren?

    Unterscheidung: Quell-Storage: Heißt nur so weil Daten draufliegen, muss *nicht* als "storage" in PVE konfiguriert sein, nur irgendwo in der dateisystem hierarchie aufscheinen ("gemounted sein") - das ist da, wo das .vma.lzo liegt Ziel-Storage: Der muss in PVE konfiguriert sein, hier landen die...
  10. Stefan_R

    Wie ein vma.lzo Image von Festplatte in Proxmox 7 importieren?

    Das wäre dann wohl ein VM backup, kein festplatten image. Versuchs mit: qm create <vmid> --archive ./2142424.vma.lzo --storage <store>, wobei 'vmid' eine freie VMID ist, und 'store' ein konfigurierter storage, auf dem die disken der VM am Ende liegen sollen.
  11. Stefan_R

    error on import 1cow2

    This message comes from LVM, it attempts to access these disk entries for some reason and fails. This shouldn't be a hard error though, is there an actual issue during import?
  12. Stefan_R

    Wie ein vma.lzo Image von Festplatte in Proxmox 7 importieren?

    In welchem Format ist das Image? Wo kommt es her?
  13. Stefan_R

    [SOLVED] Is there an Sizelimit vor KVM disks?

    I believe the limit is whatever your FS gives you at this point. I just attempted to create a (thin-allocated) 30 TB disk on ZFS and it completed fine. Edit: That is to say, I don't believe QEMU applies any limit for it's "raw" block driver at least.
  14. Stefan_R

    Guest VM's agent selection

    AFAIK "open-vm-tools" is specific to vmware products and will not work with QEMU/KVM as used in PVE. If you experience issues with the QEMU guest agent, it might help to describe those instead. We are aware of some issues with hanging backups, but every information can help us troubleshoot.
  15. Stefan_R

    Passthrough questions

    Yes. Blacklisting the ahci driver would render *all* your SATA controllers useless for the host (PVE), and specifying the PCI id in vfio-pci.ids would auto-load vfio-pci and you would need to do the unbind/bind dance I posted in reverse to load the ahci driver again. Also, looking at your...
  16. Stefan_R

    Passthrough questions

    Yes, you need to unbind and rebind the devices manually. The "complex bash script" is really not that bad: #!/bin/sh DEVICE="08:00.0" echo "$DEVICE" > /sys/bus/pci/drivers/ahci/unbind echo "$DEVICE" > /sys/bus/pci/drivers/vfio-pci/bind That should do it, change DEVICE to the PCI address of...
  17. Stefan_R

    Wirtual network cards

    Not entirely sure what you're asking, but here's a shot at it: Routing local (between VMs) and outgoing (internet) traffic via the same interface (as opposed to splitting them between two virtual NICs) is generally fine, unless you're transferring very large amounts of data. The benefit of...
  18. Stefan_R

    [SOLVED] Proxmox switching off power of other VM while performing backup

    You're not running out of RAM in the VM, the PVE host is running out. Limiting ZFS will not help, as its ARC cache is already shrinking automatically to cope. Can you post the output of a qm list && free command on PVE while both VMs are running?
  19. Stefan_R

    Single-file restore and LVM

    That's curious. Could you try extracting from the command line as discussed earlier in this thread, and then post your full command line and any error messages/output?
  20. Stefan_R

    [SOLVED] Proxmox switching off power of other VM while performing backup

    That's an OOM killer log, you're running out of memory on the host. Reduce RAM of the VMs or add more RAM to the physical server.