zfs:troubleshooting:replace_a_disk
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
zfs:troubleshooting:replace_a_disk [2021/10/13 23:48] – [Replace the Old Device] peter | zfs:troubleshooting:replace_a_disk [2021/10/13 23:58] (current) – [Replace the Old Device] peter | ||
---|---|---|---|
Line 87: | Line 87: | ||
* If this case, try specifying it by device name or by GUID. | * If this case, try specifying it by device name or by GUID. | ||
- | Get the GUID: | + | ---- |
+ | |||
+ | There are various ways to determine a GUID: | ||
+ | |||
+ | <code bash> | ||
+ | zdb # Find GUID. | ||
+ | zdb -l / | ||
+ | zpool status -g # Find GUID. | ||
+ | zpool status -L # Find device name, resolving links. | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | Try to get the GUID using zdb: | ||
<code bash> | <code bash> | ||
- | root@zeus:/ | + | zdb |
- | hermes: | + | testpool: |
version: 28 | version: 28 | ||
- | name: 'hermes' | + | name: 'testpool' |
state: 0 | state: 0 | ||
txg: 162804 | txg: 162804 | ||
pool_guid: 14829240649900366534 | pool_guid: 14829240649900366534 | ||
- | hostname: 'zeus' | + | hostname: 'BigMamba' |
vdev_children: | vdev_children: | ||
vdev_tree: | vdev_tree: | ||
Line 153: | Line 166: | ||
</ | </ | ||
+ | Use the GUID to offline the old device: | ||
- | ---- | + | <code bash> |
+ | zpool offline testpool 15935140517898495532 | ||
+ | </ | ||
+ | |||
+ | And check this has worked: | ||
<code bash> | <code bash> | ||
- | zdb # Find GUID. | + | zpool status |
- | zdb -l / | + | |
- | zpool status | + | |
- | zpool status | + | status: One or more devices has been taken offline by the administrator. |
+ | Sufficient replicas exist for the pool to continue functioning in a | ||
+ | degraded state. | ||
+ | action: Online the device using 'zpool online' | ||
+ | 'zpool replace'. | ||
+ | scan: scrub repaired 0 in 2h4m with 0 errors on Sun Jun 9 00:28:24 2013 | ||
+ | config: | ||
+ | |||
+ | NAME | ||
+ | testpool | ||
+ | raidz1-0 | ||
+ | ata-ST3300620A_5QF0MJFP | ||
+ | ata-ST3300831A_5NF0552X | ||
+ | ata-ST3200822A_5LJ1CHMS | ||
+ | ata-ST3200822A_3LJ0189C | ||
+ | |||
+ | errors: No known data errors | ||
+ | </ | ||
+ | |||
+ | and then replace the pool: | ||
+ | |||
+ | <code bash> | ||
+ | zpool replace testpool 15935140517898495532 / | ||
+ | </ | ||
+ | |||
+ | And check again this has worked: | ||
+ | |||
+ | <code bash> | ||
+ | zpool status | ||
+ | pool: testpool | ||
+ | | ||
+ | status: One or more devices is currently being resilvered. | ||
+ | continue to function, possibly in a degraded state. | ||
+ | action: Wait for the resilver to complete. | ||
+ | scan: resilver in progress since Sun Jun 9 01:44:36 2013 | ||
+ | 408M scanned out of 419G at 20,4M/s, 5h50m to go | ||
+ | 101M resilvered, 0,10% done | ||
+ | config: | ||
+ | |||
+ | NAME STATE READ WRITE CKSUM | ||
+ | testpool | ||
+ | raidz1-0 | ||
+ | ata-ST3300620A_5QF0MJFP | ||
+ | replacing-1 | ||
+ | ata-ST3300831A_5NF0552X | ||
+ | ata-ST3500320AS_9QM03ATQ | ||
+ | ata-ST3200822A_5LJ1CHMS | ||
+ | ata-ST3200822A_3LJ0189C | ||
+ | |||
+ | errors: No known data errors | ||
</ | </ | ||
- | * If zdb does not output anything, try specifying the device. | ||
</ | </ | ||
zfs/troubleshooting/replace_a_disk.1634168913.txt.gz · Last modified: 2021/10/13 23:48 by peter