Search results

  1. N

    New 2 node cluster with ZFS replication

    This is a feature that is built on top of ZFS snapshots and the send/receive mechanism of ZFS. It is not enabled automagically. You have to enable it per VM and define to which node it should be replicated and the interval. Luckily, because I only replicate the important VMs in my 2 node...
  2. N

    New 2 node cluster with ZFS replication

    You have to setup the replication. Either on the Datacenter level or on the individual VM. It's a separate panel.
  3. N

    [SOLVED] Questions about ZFS and Migration/Backups

    Hmm, let's talk about replication and HA within a cluster first. This is what Proxmox can do out of the box. Either with a shared file system (Ceph, nfs, samba, iscsi,...) or with replication (ZFS) though this works best in a two node cluster because AFAIK you can only replicate to one other...
  4. N

    [SOLVED] Questions about ZFS and Migration/Backups

    What is your network configuration? Do you have a dedicated physical interface for the Proxmox cluster communicaton (corosync)? Your problem kinda sounds like corosync might have issues. It does not need a lot of bandwidth but really likes low latency. If you have in on an interface that sees a...
  5. N

    [SOLVED] Questions about ZFS and Migration/Backups

    Ah ok, maybe I should have pointed out that Ceph is a clustered solution while ZFS is local only. The slow HDDs might be a problem, not giving you enough IOPS to be performant. If you did not configure the storage as shared you should be able to select the target storage when migrating a VM...
  6. N

    Cephfs - allow other subnet

    Add a second NIC configured in the same subnet? Route the traffic? (probably not good latency wise)
  7. N

    Share host fs/folder?

    No. Desktop Virtualization products that have this feature use some kind of network protocol and make is as transparent as possible for the user with the installed guest tools and such. So you are back to Samba/NFS :)
  8. N

    [SOLVED] Questions about ZFS and Migration/Backups

    Both, ZFS and Ceph can be used to backup VM disks between clusters. ZFS with it's send/receive mechanism. Pve-zsync is a tool around that. Ceph has the rados gateway which can mirror to another Ceph cluster. There should also be an article in the wiki on how to set this up.
  9. N

    [SOLVED] Questions about ZFS and Migration/Backups

    Ceph has certain requirements to be usable. Mainly it's own fast network of 10GBit or faster. Live migration of VMs to a different storage is possible no matter what kind of storage it is. This is possit because the live copying of the disks is done via Qemu and is storage type agnostic. The...
  10. N

    Zpool attach new disk as master / recovery

    How did you mess up? Maybe it can be fixed.
  11. N

    Standard Benutzername

    Du hast sicher das Passwort verwendet, dass du bei der Installation angegeben hast?
  12. N

    [SOLVED] Neue Installation von Proxmox, keine Updates

    Passt dein gesetzter DNS Server? Die Fehlermeldungen lassen auf ein DNS Problem schließen. Wenn du keine Subskription hast musst du noch das Enterprise repo deaktivieren und das no-subscription repo konfigurieren. Wie steht im Manual. In der GUI oben rechts auf Help oder documentation (Weiß...
  13. N

    2 Server intern miteinander verbinden

    Um das Beispiel von oben zu nehmen: auto vmbr2 iface vmbr2 inet manual bridge_stp off bridge_fd 0 Bzw. wenn man die Bridge über die GUI erstellt einfach bridge port und IP config leer lassen. Somit ist das quasi nur ein switch. Wenn man den Netzwerkkarten der Gäste dann noch...
  14. N

    SSD nicht komplett genutzt?

    Die Übersicht der Storages hast du wenn du links im Tree ganz oben auf Datacenter klickst und dann im Menü daneben auf Storage. Offiziell gibt es in der hinsicht nichts. Grundsätzlich wäre aber ein wenig Handbuch studieren oder zumindest ein paar Einführungstutorials (auf Youtube gibts auch...
  15. N

    2 Server intern miteinander verbinden

    Der Bridge port muss nicht definiert sein. In dem Fall agiert die Bridge als interner Switch. Auch muss keine IP darauf konfigiert sein wenn der Proxmox Host nicht direkt Teil des internen Netzes sein soll.
  16. N

    SSD nicht komplett genutzt?

    Wie schaut deine storage config aus? Du solltest auch storage haben das local heißt. Je nachdem ob zu ZFS oder nicht verwendet hast während der Installation evtl auch ein wenig anders. Grundsätzlich ist das was du hier siehst der Platz den das OS für sich hat. Im storage mit dem Namen local...
  17. N

    ZFS: zvol vs dataset --- Frage (betrifft auch Backup-Strategie)

    Das wird technisch nicht so einfach gehen. Ein Container ist nichts anderes als eine Anzahl von Prozessen die mehr oder weniger abgeschottet auf dem gleichen Kernel wie der Proxmox VE Host laufen. Entsprechend kann man ihm schreib und leserechte auf ein ZFS subvol geben und ihm vorgaukeln, dass...
  18. N

    ZFS: zvol vs dataset --- Frage (betrifft auch Backup-Strategie)

    VMs verwenden Block Devices. Deshalb ZVOLs. Wenn du Dateibasierte Backups nicht innerhalb der VM sondern auf Host Ebene machen willst musst du das Dateisystem in die VM bekommen. AFAIK gibt es da keine magische Lösung sondern du wirst auf klassische Lösungen wie NFS Export am Host und in der VM...
  19. N

    Using Separate Ethernet Ports for Each VM

    the other bridges don't necessarily need an IP address. They are basically a software version of a switch. So you set the network interface of the VMs to the according bridges, configured the network inside the VM and still cannot reach anything? On a hunch I would remove the auto enp7s0f1...