Search results

  1. gurubert

    ceph active+remapped+backfill_toofull recovery problem

    Set the reweight value for the OSDs back to 1.0
  2. gurubert

    Proxmox + Ceph - kernel: libceph: osd3 (1)192.168.1.212:6811 bad crc/signature

    KRBD is an option in the storage configuration of Proxmox. It can be enabled or disabled on the pool and affects all VMs stored there. You would need to create a new pool in Ceph and a new storage on that pool in Proxmox without the KRBD setting. After that you could migrate the VM image to...
  3. gurubert

    Proxmox + Ceph - kernel: libceph: osd3 (1)192.168.1.212:6811 bad crc/signature

    Do you happen to use KRBD for the VMs? With LVM on top of a mapped RBD? What is the load of the machines and how saturated is the network? Have you tried to switch to qemu+rbd (userspace RBD) for this VM?
  4. gurubert

    Routing - 1 Nic - 2 Public IPs on Different Subnet

    You need to add the physical port eth0 to the bridge vmbr0. Without that there is no way for the network packets to reach the Internet.
  5. gurubert

    Proxmox + Ceph - kernel: libceph: osd3 (1)192.168.1.212:6811 bad crc/signature

    Have you enabled compression on the RBD pool for the "vm-compression" storage? https://docs.ceph.com/en/latest/rados/configuration/bluestore-config-ref/#inline-compression
  6. gurubert

    [SOLVED] Ubuntu 24.04 not supported??

    Why would a virtualized Ubuntu 24.04 not be supported by KVM / Proxmox? If you made a snapshot of the VM before the upgrade you could roll back to it.
  7. gurubert

    Proxmox + Ceph - kernel: libceph: osd3 (1)192.168.1.212:6811 bad crc/signature

    Weird things can happen when the MTU sizes of the involved interfaces do not match.
  8. gurubert

    Unable to install ceph

    The hostname mirrors.tencentyun.com has no IP address in the global DNS. download.proxmox.com seems to be blocked on the "Great Firewall".
  9. gurubert

    Any news on lxc online migration?

    I learn something new every day. :)
  10. gurubert

    Any news on lxc online migration?

    I do not think that it is possible to live migrate a container. A container are just processes running in a different namespace on the host's kernel. You cannot freeze a process and transport it to another host and unfreeze it there like you can do with a virtual machine.
  11. gurubert

    IPv6 link-local on SDN VLAN interface

    AFAIK the IPv6 link local address is assigned automatically by the Linux kernel whenever a new interface goes up. As the bridge interface "Servers" should only transport Ethernet to and from the VMs and not the host you could disable IPv6 on it entirely: echo '1' >...
  12. gurubert

    Static IP to DHCP

    Proxmox needs static IPs. You cannot dynamically assign an IP to a Proxmox node.
  13. gurubert

    ceph active+remapped+backfill_toofull recovery problem

    With replication size 3 you have a max usable capacity of 5.2 TB as this is the capacity of your smallest host. Your OSDs are very unbalanced across the hosts which is not good for such a small cluster. This is why the OSDs in pve10 reach the nearfull ratio and refuse to take any more data. You...
  14. gurubert

    Way to have no storage content directory created

    If you want to use NFS mounts but not for Proxmox storage just put them into /etc/fstab.
  15. gurubert

    ceph pgs not scrubbing for a long time

    Do you run Crph along with the VMs on the same hardware? The load may be too high: osd_scrub_load_threshold Description: The maximum load. Ceph will not scrub when the system load (as defined by the getloadavg() function) is higher than this number. Default is 0.5. Type: Float...
  16. gurubert

    how to use QLogic 10GbE Converged Network Adapter as a network adapter?

    There seems to be no driver support in the Linux kernel at the moment for this combination.
  17. gurubert

    how to use QLogic 10GbE Converged Network Adapter as a network adapter?

    The qlcnic driver module is for a different kind of devices. You can compare the "alias" section in the modinfo output for both.
  18. gurubert

    Problem with PVE 8.1 and OCFS2 shared storage with io_uring

    There is now a kernel patch available: https://lore.kernel.org/io-uring/8b7a8200-f616-46a8-bc44-5af7ce9b081a@kernel.dk/T/#u OCFS2 seems to be unmaintained.