Can someone tell me what might be wrong in the following procedure,
After mounting all the correct directories and editing all the required conf files during FreeBSD install, I reboot the system and get the following error,
Is this because I replaced the gnop devices with real hard disks and zfs didn't have a chance to resilver the drives? Does anyone know how I can fix this issue?
Code:
zpool create -O mountpoint=none -o cachefile=/tmp/zpool.cache -o autoexpand=on pool1 md2.nop md3.nop md4.nop
zpool replace pool1 md2.nop gpt/disk0
zpool offline pool1 md2.nop
mdconfig -d -u 2
rm /tmp/tmpdsk0
zpool replace pool1 md3.nop gpt/disk1
zpool offline pool1 md3.nop
mdconfig -d -u 3
rm /tmp/tmpdsk1
zpool replace pool1 md4.nop gpt/disk2
zpool offline pool1 md4.nop
mdconfig -d -u 4
rm /tmp/tmpdsk2
After mounting all the correct directories and editing all the required conf files during FreeBSD install, I reboot the system and get the following error,
Code:
Default: zroot:/boot/kernel/kernel
boot: ZFS: i/o error - all block copies unavailable
Is this because I replaced the gnop devices with real hard disks and zfs didn't have a chance to resilver the drives? Does anyone know how I can fix this issue?