Solved What can I do when da12 shows up 2 times in my Zpool?

First of all here is a picture of the Zpool:

Code:
NAME        STATE     READ WRITE CKSUM
        zdata       DEGRADED     0     0     0
          raidz2    ONLINE       0     0     0
            da12    ONLINE       0     0     0
            da22    ONLINE       0     0     0
            da23    ONLINE       0     0     0
            da24    ONLINE       0     0     0
            da25    ONLINE       0     0     0
            da26    ONLINE       0     0     0
            da27    ONLINE       0     0     0
            da28    ONLINE       0     0     0
            da29    ONLINE       0     0     0
            da30    ONLINE       0     0     0
          raidz2    ONLINE       0     0     0
            da31    ONLINE       0     0     0
            da32    ONLINE       0     0     0
            da33    ONLINE       0     0     0
            da34    ONLINE       0     0     0
            da35    ONLINE       0     0     0
            da36    ONLINE       0     0     0
            da37    ONLINE       0     0     0
            da38    ONLINE       0     0     0
            da39    ONLINE       0     0     0
            da40    ONLINE       0     0     0
          raidz2    ONLINE       0     0     0
            da41    ONLINE       0     0     0
            da42    ONLINE       0     0     0
            da43    ONLINE       0     0     0
            da44    ONLINE       0     0     0
            da0     ONLINE       0     0     0
            da1     ONLINE       0     0     0
            da2     ONLINE       0     0     0
            da3     ONLINE       0     0     0
            da4     ONLINE       0     0     0
            da5     ONLINE       0     0     0
          raidz2    DEGRADED     0     0     0
            da6     ONLINE       0     0     0
            da7     ONLINE       0     0     0
            da8     ONLINE       0     0     0
            da9     ONLINE       0     0     0
            da10    ONLINE       0     0     0
            da11    ONLINE       0     0     0
            da12    FAULTED      0     0     0  corrupted data
            da13    ONLINE       0     0     0
            da14    ONLINE       0     0     0
            da15    ONLINE       0     0     0

I have tryied the following, first iI rebooted and then ran zpool clear command to give me a fresh look of the zpool, but still same result.

Have any of you * seen this before, is it a bug.?

When iI look in /dev da12 only shows up one time as da12 and iI can run diskinfo -v da12, but iI think the information comes from the da12 in the first vdev.
 
Well, my first guess would be that somebody tried to replace a drive and accidentally replaced it with da12 instead of da21. The first vdev uses 22 to 30, so 12 looks out of place there.
 
Hi, the disk da12 was faulted so it was located and removed. When iI inserted the new disk it was also given da12 so iI replaced old disk da12 with new disk da number da12.
 
run a history of the pool and show us the command used to replace that drive. something is not right here (but we know that already).
 
I solved the problem, after exporting my Zpool and importing it again the da12 came up with a number 18067350388512134854 so iI could talk to it again and replace it with da21.

Code:
raidz2                    DEGRADED     0     0     0
            da6                     ONLINE       0     0     0
            da7                     ONLINE       0     0     0
            da8                     ONLINE       0     0     0
            da9                     ONLINE       0     0     0
            da10                    ONLINE       0     0     0
            da11                    ONLINE       0     0     0
            replacing               DEGRADED     0     0     0
              18067350388512134854  FAULTED      0     0     0  was /dev/da12
              da21                  ONLINE       0     0     0  3.42M resilvered
            da13                    ONLINE       0     0     0
            da14                    ONLINE       0     0     0
            da15                    ONLINE       0     0     0
 
Back
Top