ZFS I need help with my Zpool

Hi,

I have a problem with my zfs pool.
A disk was dead and replaced with a spare, and then the spare died.
The pool is not able to resilver.


Code:
NAME                          STATE     READ WRITE CKSUM
        backup                        DEGRADED     0     0     0
          raidz1-0                    DEGRADED     0     0     0
            da0                       ONLINE       0     0     0
            da1                       ONLINE       0     0     0
            da2                       ONLINE       0     0     0
            spare-3                   DEGRADED     0     0     0
              replacing-0             DEGRADED     0     0     0
                12362843897656857738  FAULTED      0     0     0  was /dev/da3
                da34                  ONLINE       0     0     0  (resilvering)
              da33                    ONLINE       0     0     0  (resilvering)
            da3                       ONLINE       0     0     0
          raidz1-1                    ONLINE       0     0     0
 
It's difficult to see exactly which disks are involved in the replace (Indentation is really important in zpool status output)

You should be able to remove the faulty spare disk with the following command if it's still trying to do the replace operation.
Code:
zpool detach backup spare-disk-name
 
Can you show the top part of the zpool status output? The snippet you've posted shows /dev/da33 and /dev/da34 are currently ONLINE and resilvering. Not sure what issue you think you are seeing.
 
Back
Top