Search results

  1. spirit

    Fibre Channel (FC-SAN) support

    yes, snapshots on san are coming (with qcow2 on top of lvm, like ovirt indeed) . I'm working on it, I hope to finish it for pve9.
  2. spirit

    ZFS rpool incredible slow on Mirrored NVMEs

    don't use zfs or ceph on consumer ssd/nvme without plp , performance will always be bad.
  3. spirit

    Ceph 19.2.1 2 OSD(s) experiencing slow operations in BlueStore

    For this specific case, I think this is normal to have random slow ops error, as your pg and replicats can be on different slorage speed. (so, a primary write on fast sdd, will always wait for replicat on slow hdd), and for read, it's really russian roulette. (Personally, I'll do 2...
  4. spirit

    Ceph 19.2.1 2 OSD(s) experiencing slow operations in BlueStore

    you have mixed ssd and hdd in the same pool ???
  5. spirit

    VLAN-Aware VNet on a EVPN Zone

    ok make sense. I'll try to see if we could implement it.
  6. spirit

    Proxmox VE 8.4.1 Windows IOPS/Performance Slow

    maybe you are cpu limited in the vm (currently 1disk can use only 1core with iothread). BTW, cache=writeback don't make too much sense with local nvme. It can even slowdown result. better to use cache=none.
  7. spirit

    VLAN-Aware VNet on a EVPN Zone

    the main reason is that current evpn implementation is done to use the anycast gateway distributed (and do l3rougint)on each node, but I'll not work if you use vlan behind. (Or maybe do you plan to use evpn to transport L2 only witout any routing ?)
  8. spirit

    [SOLVED] Migrating Rocky Linux 9 from Hyper-V to Proxmox fails

    https://pve.proxmox.com/wiki/Serial_Terminal#Add_a_virtual_serial_port_to_the_VM (then you can use the alternative xterm console, where copy/paste is working). but you can't have display, until you configure some config in the guest
  9. spirit

    [SOLVED] Migrating Rocky Linux 9 from Hyper-V to Proxmox fails

    xterm console allow copy paste, but you need to redirect output first to the serial. (maybe copy/paste could work blindly, no sure)
  10. spirit

    After Renaming Node Everything is Gone or Won't Start

    you should first restart pve-cluster service, to mount the /etc/pve directory . (it's used /var/lib/pve-cluster/config.db as backend, and expose it like a fs in /etc/pve)
  11. spirit

    Maintenance on a large part of cluster

    mv /etc/pve/ha/resources.cfg /tmp/ ;) then move back the file again Note than you need to close watchdog too to avoid fencing, the currently only is it to 1) stop pve-ha-lrm on all nodes, node by node 2) stop pve-ha-crm on all nodes, node by node then, do the reverse when on have...
  12. spirit

    [SOLVED] Migrating Rocky Linux 9 from Hyper-V to Proxmox fails

    I have see some similar problem with migration from vmware, seem than rocky don't have virtio drivers by default in initramfs when it's deployed first on different hypervistor maybe try to boot with ide, then sudo dracut -f --regenerate-all --add-drivers "virtio_blk virtio_scsi virtio_net"...
  13. spirit

    Maintenance on a large part of cluster

    shouldn't be a problem, but if you use HA, you really to disable it before.
  14. spirit

    Need Advice. Replacing consumer NVMe used for Ceph DB/WAL in a 3-Node Cluster

    don't use wal/db disk on separated drive, simply use your enterprise ssd as osd with wal/db disk inside
  15. spirit

    Default route advertisement to SDN EVPN

    ah ok ! ^_^ for the restart, I really don't known (maybe it's an option of fortigate side), but you can use "/usr/lib/frr/frr-reload.py /etc/frr/frr.conf --reload" to reload config without restarting the frr process
  16. spirit

    Default route advertisement to SDN EVPN

    (just to be sure, your frr.conf is on fortigate ? forgate use frr ? )
  17. spirit

    Default route advertisement to SDN EVPN

    you need to announce a default type5 route from your fortigate, and it should already by done with your address-family l2vpn evpn default-originate ipv4 default-originate ipv6 exit-address-family "neighbor VTEP activate" need to be in "address-family l2vpn evpn", like in your config...
  18. spirit

    Upgrade FRR 10.2.2-1 failed on node

    this message looks strange. what is the content of /etc/frr/daemons ?
  19. spirit

    Performance Issues with CEPH osds

    what is your nvme model ? seem unrelated, icmp is network, slow storage can't impact it. but slow network between the osd could impact io. (do you have tried some icmp test between your proxmox nodes directly ?) should be investigated
  20. spirit

    [SOLVED] Migrating from Hyper-V to Proxmox disk and skill issues

    you can use " qm disk import <vmid> yourexportedfile.qcow2 <targetstorage> --format raw|qcow2", it'll import the disk, do the format converstion and add the disk to vm configuration .