Search results

  1. dietmar

    LXD Project Lost Some Funding From Canonical - Does this affect Proxmox Virtual Environment?

    We do not use LXD at all. We never used it, and we will never use it. We use LXC.
  2. dietmar

    How to scale Proxmox Bridge Groups (1000+)

    You simply specify the VLAN tag in the VM network config (or when you create the VM).
  3. dietmar

    Proxmox Backup only at bytes

    Looks there are no disks inside the VM? (knowing the VM config would give more insights).
  4. dietmar

    No webinterface after darkmode

    GUI is client side only. Try to clear all web caches and reload the GUI.
  5. dietmar

    info vzdump mail output

    The backup task generates a summary and sends it using email.
  6. dietmar

    Two PBS Servers, one syncs from the other - Do I Prune and GC on both?

    For Ransomware protection, Tape backup is also a good idea..
  7. dietmar

    Feature Request - Cinder

    The problem with many proprietary storage vendor is that they simply say: "We do not support Proxmox". It won't help if we implement a Cinder plugin, because the other endpoint is still on the storage box and controlled by the storage vendor. So we could never debug or fix problem on that side...
  8. dietmar

    [SOLVED] Proxmox VMs are not being displayed in the 'virsh list' command

    Yes, because Proxmox VE does not use libvirt at all (its a different product).
  9. dietmar

    Using TLS accelerator card

    No, that is not possible. PBS does a lot of pre-processing on the client side: - compression - optional data encryption - chunking - checksum generation (SHA256) Only speeding up TLS would not help at all.
  10. dietmar

    Neuinstallation und Repository geht nicht

    Offensichtlich funktioniert dein Netzwerk nicht - zumindest ein DNS Problem
  11. dietmar

    Datacenter Setup Best Practices

    Für größere installationen empfehlen wir CEPH als Storage zu verwenden. Siehe auch: https://ceph.io/en/discover/technology/ Konfiguration und management sind in unser GUI integriert. Success Stories: https://proxmox.com/en/about/stories?f=7
  12. dietmar

    Why changes in jobs.cfg cannot be monitored

    pmxcfs (/etc/pve/) is a cluster wide file system. So you will not get inotify events if content is modified using the cluster stack.
  13. dietmar

    Inconsistent vm status

    The "cluster/resources" status is a summary of all nodes. There can be a little lag, becaue data need to be sent to all nodes. The "/nodes/vps2/qemu/200/status/current" status is more accurate, because that API call directly connets to the node the VM is running on.
  14. dietmar

    What is wrong with High Availability?

    AFAIK there is already such check based on the storage configuration. Of cause this fails if you have a wrong storage configuration. Anyways, I guess this check could be further improved...
  15. dietmar

    What is wrong with High Availability?

    First, I want to notice that the recommended way is to use a shared storage for HA, for example Ceph. Please notice that all things you describe above simply cant happen in such (the recommended) setup. It is simply considered to dangerous to auto-cleanup, because it involves deleting volumes.
  16. dietmar

    Questions using a Proxmox Backup Server PBS with multiple different remote PVE site locations

    Yes Yes Yes, you can use PBS to allow simple disaster recovery and migrating. But keep in mind that VM IDs from different hosts may clash if you only use one datastore. To avoid that, you can define more than one datastore, i.e. one datastore for each host (or cluster).
  17. dietmar

    Weird bug or broken config with ubuntu lxc

    You can configure the DNS settings for the Container using the GUI.
  18. dietmar

    exit code 255

    You need to disable HA for VM 103, then test again. You can re-enable HA when it works again.
  19. dietmar

    Backup script hook missing events?

    There is usually a way to to this from inside the VM. For example, the qemu guest agent provides a "--fsfreeze-hook" option.
  20. dietmar

    [SOLVED] [pve7] api call agent/exec-status

    Its a normal HTTP get request, so you add the pid as query argument: GET /api2/json/nodes/{node}/qemu/{vmid}/agent/exec-status?pid={pid}