zpool 更换叶池退化

zpool replace leaves pool degraded

我的 FreeNAS 9.10 ZFS 池出现问题。

其中一个驱动器被警告有很多坏扇区,所以我决定更换它。在让 'zpool replace' 识别新驱动器时遇到了巨大的问题(它在 ada3 中,但它不接受它作为参数)。我唯一能想到的就是将新驱动器作为 'spare' 添加到 zpool,然后使用 zpool replace [poolname] [old device id] [spare device id]

这有效并重新银化了新驱动器。但是,一旦重新银化完成,池仍处于降级状态并且似乎需要旧驱动器。

如何说服它 'forget' 旧驱动器并永久接受新驱动器?

非常感谢

  pool: ZFS_NAS
state: DEGRADED
status: One or more devices could not be opened.  Sufficient replicas exist for
the pool to continue functioning in a degraded state.
action: Attach the missing device and online it using 'zpool online'.
  see: http://illumos.org/msg/ZFS-8000-2Q
scan: resilvered 989G in 4h42m with 0 errors on Mon May  2 19:45:33 2016
config:

NAME                                              STATE     READ WRITE CKSUM
ZFS_NAS                                           DEGRADED     0     0     0
  raidz1-0                                        DEGRADED     0     0     0
    spare-0                                       DEGRADED     0     0     0
      12082773611957310038                        UNAVAIL      0     0     0  was /dev/gptid/1418d56c-431b-11e4-b9f7-28924a2f106f
      gptid/503d6d1c-106e-11e6-a169-28924a2f106f  ONLINE       0     0     0
    gptid/1608e28a-431b-11e4-b9f7-28924a2f106f    ONLINE       0     0     0
    gptid/1699dab6-431b-11e4-b9f7-28924a2f106f    ONLINE       0     0     0
spares
  16673430511205791764                            INUSE     was /dev/gptid/503d6d1c-106e-11e6-a169-28924a2f106f

errors: No known data errors

您必须移除故障驱动器:

zpool detach ZFS_NAS gptid/1418d56c-431b-11e4-b9f7-28924a2f106f

zpool detach ZFS_NAS 12082773611957310038

然后备用驱动器 (gptid/503d6d1c-106e-11e6-a169-28924a2f106f) 成为 ZFS_NAS 池的在线成员。

现在您可以向池中添加新备用

Refs.