Recent content by sg90

  1. S

    CEPH Crash after 8.2.4 update

    Check your ceph.conf file. 172.30.250.0.0/24 is not a valid network. I imagine you mean 172.30.250.0/24 Update this in your ceph.conf file and then restart your servers.
  2. S

    CEPH Crash after 8.2.4 update

    Is that the end of the log? As the log is showing the OSD starting its boot process but no error.
  3. S

    CEPH Crash after 8.2.4 update

    Yeah you need to go into the logs of one of the services to get more detail. In "/var/log/ceph" check one of the ceph-osd.xx.log files
  4. S

    CEPH Crash after 8.2.4 update

    Your problem is you have 12 OSD down, you need to look at why they are down and get them back online. Check the ceps service logs for the OSD's and see whats causing them to crash/not start
  5. S

    VM disk takes more disk after migrating it to LVM-thin storage

    You need to have the discard flag set on the disk before you run the fstrim command. If you don't have it enabled the fstrim command will run but won't actually be passed through to the underlying disk. You need to make sure discard is enabled, VM stopped and started and then fstirm enable...
  6. S

    VM disk takes more disk after migrating it to LVM-thin storage

    If you enable discard and then run a fstrim on the VM after it’s enabled and you have applied it to the VM it will clear down the space. This is a limitation of QEMU live migration
  7. S

    Partition on ceph corrupt

    It will ignore any differences between the two copy’s the the PG’s will bring the PG online but the data within it will be corrupt and/or missing. But being you only have two copies of the data as was running replication of 2 you don’t have too many options.
  8. S

    Advice on Setting Up Redundant RAID with SATA SSD for Proxmox Server

    This is impossible to answer without knowing your setup. But there is 0 reasons why you wouldn’t be able to use the same IP. However going by your limited expirence and fact this is a hobby project ZFS may not be the best option due to the extra complexity you will need to learn and manage...
  9. S

    Advice on Setting Up Redundant RAID with SATA SSD for Proxmox Server

    You would need to wipe and start from fresh as the underlying setup of the Filesystem would need to change from what ever your currently running to ZFS. You'd need to backup your VM's wipe and run through the installer to setup ZFS: https://pve.proxmox.com/wiki/ZFS_on_Linux
  10. S

    Partition on ceph corrupt

    No, it will allow you to repair and or tell CEPH they are PG's with lost data and to continue. But I think at this point you have data that was inflight to the disks that has been lost, hence you have PG's in the state they are, one of the core downsides to a size of 2 vs the recommended 3.
  11. S

    Issues with HP P420i and SMART

    Why are you trying to open it?
  12. S

    Installation Proxmox (Dell r750 PowerEdge 24 disks) "Only shows my RAID"

    If you run with no raid if a disk fails your loose any files on that disk.
  13. S

    Installation Proxmox (Dell r750 PowerEdge 24 disks) "Only shows my RAID"

    No problem as such, only issue with making RAID 0's instead of mixed mode with HBA is your underlying OS won't get full access to the disk and it's health as they are hidden behind the RAID. Smartctl normally can connect via raid controllers but takes some extra steps. What RAID controller is...
  14. S

    Partition on ceph corrupt

    It's not quite clear exactly what you did at the start when this all happened? Did you physically remove a disk whilst CEPH was online, all it takes is a write to not have been completed when your running 2/1 and you have a corrupt PG, if you did something on one of the disks outside of CEPH...
  15. S

    Is compute node + backup node + Q node setup ok as somewhat HA cluster?

    One question I have you state your aiming for 99% uptime, this is around 3 days a year downtime. If that's the case sounds like a Active node with backups/data sync to a secondary source and the downtime of bringing up that secondary source is fine. If you was aiming for more 99's then your...