So I'm trying to do something I thought was simple. I have a SSD pool with 4 identical 1,6TB Dell enterprise drives, and I want to add two more. Here's the output of the pool status for that pool:
pool: fastsas5
state: ONLINE
config:
NAME STATE READ WRITE CKSUM
fastsas5 ONLINE 0 0 0
raidz1-0 ONLINE 0 0 0
scsi-35001e82002774394 ONLINE 0 0 0
scsi-35001e8200276d37c ONLINE 0 0 0
scsi-35001e8200276f06c ONLINE 0 0 0
scsi-35001e8200276ee24 ONLINE 0 0 0
errors: No known data errors
The two drives I'm trying to add is scsi-35001e8200276d3f4 and scsi-35001e8200276d068 with this command:
zpool add fastsas5 raidz /dev/disk/by-id/scsi-35001e8200276d3f4 /dev/disk/by-id/scsi-35001e8200276d068
but that gives the error:
invalid vdev specification
use '-f' to override the following errors:
mismatched replication level: pool uses 4-way raidz and new vdev uses 2-way raidz
Where am I going wrong?
pool: fastsas5
state: ONLINE
config:
NAME STATE READ WRITE CKSUM
fastsas5 ONLINE 0 0 0
raidz1-0 ONLINE 0 0 0
scsi-35001e82002774394 ONLINE 0 0 0
scsi-35001e8200276d37c ONLINE 0 0 0
scsi-35001e8200276f06c ONLINE 0 0 0
scsi-35001e8200276ee24 ONLINE 0 0 0
errors: No known data errors
The two drives I'm trying to add is scsi-35001e8200276d3f4 and scsi-35001e8200276d068 with this command:
zpool add fastsas5 raidz /dev/disk/by-id/scsi-35001e8200276d3f4 /dev/disk/by-id/scsi-35001e8200276d068
but that gives the error:
invalid vdev specification
use '-f' to override the following errors:
mismatched replication level: pool uses 4-way raidz and new vdev uses 2-way raidz
Where am I going wrong?