Search results

  1. N

    HA storage for web cluster on PVE/Ceph

    Old topic but still active situation of today. @hansm have you solve this?
  2. N

    How to replace HDD in ZFS raidz2

    Have you tried to look at dmesg / smartctl ? Try zpool clear <pool_name> This will make zfs pool to do resilvering and it may be enough for fix. Later investigate the status of the disk.
  3. N

    Proxmox clone or transfer to new disk from 4k to 512 Sectors

    You cant transform ZFS pool from ashift 12 to 9. Just create need ZFS pool and using snapshot send data to new place.
  4. N

    EC pool creation, Help Needed

    I believe you need 6 host
  5. N

    ZFS Degraded

    Could it be cable? If it is possible try to swap drive places to see does it effect drive or the slot.
  6. N

    ZFS Degraded

    Try to read sectors and look does it return data hdparm --read-sector 512890372 /dev/sda hdparm --read-sector 76753636 /dev/sda hdparm --read-sector 821232972 /dev/sdb Another drive test is to scrub with ZFS. It will read all the written data and will validate it.
  7. N

    ZFS Degraded

    Clear ZFS pool and let it run. If the problem appear again then look it more deeply.
  8. N

    Windows 11 VM IO drops to 0Mbit

    If you are working with critical data then you will invest into UPS, more disk for file copies and so on... For you at the moment I can suggest to disable ZFS sync ( regular and sync writes will become as regular writes) to see does it helps and If it possible rise ARC cache size. zfs set...
  9. N

    Windows 11 VM IO drops to 0Mbit

    Welcome to ZFS. ZFS have a cache (ARC) and a cache for sync writes (LOG). Inside ARC cache you can find data cache and write cache. ZFS do not write constantly (on not heavy writes). It flush the data every 5 seconds (zfs_txg_timeout) or when dirty cache is full. Then ZFS write cache is full it...
  10. N

    [SOLVED] Ceph OSD stopped working, unable to restart it

    If you think you storage drive is healthy then recreate OSD. As of now it show bad data.
  11. N

    [SOLVED] Ceph OSD stopped working, unable to restart it

    Maybe your storage drive is dying. Replace it or recreate it.
  12. N

    [SOLVED] Recommend way for encryption

    Yes. Last time ( long ago ) I had to do it, the screen was refreshed with messages but typing with keyboard was accepted and process moved on.
  13. N

    [SOLVED] Recommend way for encryption

    It depend on your situation. I limit by IP address right now. Mandos server and mandos client are in different cities. You can read introduction here ( https://www.recompile.se/mandos/man/intro.8mandos ) As they say:
  14. N

    [SOLVED] Recommend way for encryption

    I run one server with full encryption except boot partition. Layout: 1. Needed partitions are encrypted with LUKS 2. ZFS use those partitions as regular partitions. I use Mandos ( https://www.recompile.se/mandos ) as tool for auto password loader from remote server at boot time before loading...
  15. N

    Ceph | Trying to understand fault tolerance

    What will happens if both nodes lose connection between and both nodes continues to write locally. How you will merge differences?
  16. N

    Fan Control, LM-Sensors HP Workstation | CPU Temp too high??

    I use Corsair Commander Pro to control fan speed. Of course my fans are with 4 pins.
  17. N

    Understanding Ceph Fundamentals

    You can create crush rules to make localized reads
  18. N

    CEPH vs RAID

    My opinion: If you use system without data checksum - it is not critical system.
  19. N

    Migrate zfs from mountpoint to vm image

    If you use ZFS try snapshots. If you want to use "mountpoint" in VM you can try 9p mount
  20. N

    pve 8.2.2 Linux 6.8.4-3 ZFS Problem BUG: kernel NULL pointer dereference

    If your `zpool status` report "Some supported and requested features are not enabled on the pool." then your pool is not upgraded. Or you can check in `zpool history` did upgrade was initialized. Or you can check in `zpool get all pool` enabled features and compare to documentation what was new...