[[!meta title="Setting up raidframe(4) on NetBSD"]] [[!template id=needs-update reason="netbsd-10 has new raidctl create operation to make this easier"]] After posting lots of questions, and getting lots of expert help, I finally got my new server up and running with raid! Since I asked so many questions, it was suggested that I recap the process so that someone else might be able to make it work without having to ask! So ... Here's what I did recently to get [[!template id=man name="raid" section="4"]] up and running on my new server. 1. This is really important! Read the man page for [[!template id=man name="raidctl" section="8"]]. It is a long man page, but it is important to understand how things work. And there are some actual examples towards the end, which will only make sense if you've read the intro material. Don't be intimidated by all the detail, just RTFM before you start! 2. Use [[!template id=man name="dd" section="1"]] to completely erase the drives. This is useful to make sure that any existing labels/wedges/etc. get removed, and also makes it easier to initialize the raidset parity. On Western Digital SATA-II 500GB drive, it took less than two hours (each) for this step. (The operation starts off at ~110GB/sec, but will get slower as the heads get closer to the center of the drive where there are fewer sectors per cylinder.) dd if=/dev/zero bs=32k of=/dev/rwd2a dd if=/dev/zero bs=32k of=/dev/rwd3a 3. This step might not be necessary but I wasn't taking any chances! Also, this step is only applicable on ports which use DOS disk layouts. For other ports, you should be able to skip this step, and proceed directly to Step 4. Use [[!template id=man name="fdisk" section="8"]] to set up DOS/Windows partition data. Make sure you use the "-A 2048" option for alignment. fdisk -uai -A 2048 wd2a fdisk -uai -A 2048 wd3a (If you are using an older version of fdisk and get the error fdisk: Bad argument to the -A flag. you can specify "-A 2048/2048" instead.) Set the partition 0 type to 169 (NetBSD), and let it occupy the entire drive. If you're going to boot from this raidset, you should also make this the active partition, and update the boot blocks when prompted. When finished, this is what my drive reports: Partitions aligned to 16065 sector boundaries, offset 63 Partition table: 0: NetBSD (sysid 169) start 2048, size 976771120 (476939 MB, Cyls 0/32/33-60801/80/63), Active PBR is not bootable: All bytes are identical (0x00) 1: 2: 3: Bootselector disabled. First active partition: 0 (The "PBR is not bootable" line will not appear if you later use [[!template id=man name="installboot" section="8"]]; see step 14 below.) 4. Use [[!template id=man name="disklabel" section="8"]] to provide a NetBSD disklabel on each member of the raidset. Create an 'e' partition that describes the whole disk - so it is essentially a copy of the 'c' partition. Make sure that the offset of your 'e' partition is large enough to accomodate any architecture-specific bootstrap requirements, and that the offset is a multiple of the hard drive's native transfer size. Set the fstype on your 'e' partition to RAID (4.2BSD will also work, but not if you want to use RAID_AUTOCONFIG). Here's my partition info: 5 partitions: # size offset fstype [fsize bsize cpg/sgs] c: 976771120 2048 unused 0 0 # (Cyl. 2*- 969020) d: 976773168 0 unused 0 0 # (Cyl. 0 - 969020) e: 976771120 2048 RAID # (Cyl. 2*- 969020) 5. Now create a raid.conf file to describe the raidset. Mine is a simple RAID-1 (mirror): START array #numrow numcol numspare 1 2 0 # Identify physical disks START disks /dev/wd2e /dev/wd3e # Layout is simple - 64 sectors per stripe START layout #Sect/StripeUnit StripeUnit/ParityUnit StripeUnit/ReconUnit RaidLevel 128 1 1 1 # No spares #START spare # Command queueing START queue fifo 100 6. Create the raidset using [[!template id=man name="raidctl" section="8"]]. Until you do this for the first time, there are no raid "component labels" on the member drives, so you will need to use the "-C" option; if the raidset has been previously created, you should use "-c" instead (this is what /etc/rc.d/raidframe uses at system startup). raidctl -C /etc/raid1.conf raid1 7. Next, initialize the component labels with raidctl. raidctl -I 201105061405 raid1 (For serial number, I just used the current date/time; any 64-bit integer will work.) 8. Now use raidctl to initialize the parity of the raidset. On my 500GB drives, this took about 1.5 hours. raidctl -i raid1 It won't tie up your session, as the parity operation happens in the kernel in the background. You can monitor the progress using raidctl -s raid1 9. When parity is finished, you can treat the raidset as a normal disk. You will need to write a NetBSD disklabel (this label is separate from the labels on the physical drives). Make certain that all the offsets are multiples of the drive's native block size; otherwise you will have unaligned transfers and performance will be very bad! (This is also why, in step 3 above, we use "-A 2048" for fdisk rather than letting it default to 63!") Here is what my drive looks like: 7 partitions: # size offset fstype [fsize bsize cpg/sgs] c: 976770944 0 unused 0 0 # (Cyl. 0 - 953877*) d: 976770944 0 unused 0 0 # (Cyl. 0 - 953877*) e: 536870912 0 4.2BSD 2048 16384 0 # (Cyl. 0 - 524287) f: 104857600 536870912 4.2BSD 2048 16384 0 # (Cyl. 524288 - 626687) g: 335042432 641728512 4.2BSD 2048 16384 0 # (Cyl. 626688 - 953877*) 10. Now, just as you would for a real disk, use newfs to initialize the filesystems. Then mount them and start using your new raidset! newfs /dev/raid1e mount /dev/raid1e /mnt 11. If your kernel includes the RAID_AUTOCONFIG option, you can use raidctl to let your system automatically reconfigure the raidset at every boot. (If you don't do this, system startup will still take care of this, as long as your configuration file is properly named "raid[0-9].conf" or "raid[1-9][0-9].conf" and is located in /etc/ directory.) raidctl -A yes raid1 12. If you're going to boot from the raidset, you probably want to have an 'a' partition. My bootable raidset has members wd0 and wd1, which are labeled like this: 5 partitions: # size offset fstype [fsize bsize cpg/sgs] c: 488395120 2048 unused 0 0 # (Cyl. 2*- 484520) d: 488397168 0 unused 0 0 # (Cyl. 0 - 484520) e: 488395120 2048 RAID # (Cyl. 2*- 484520) 13. And the raidset itself has these partitions: 6 partitions: # size offset fstype [fsize bsize cpg/sgs] a: 41943040 0 4.2BSD 2048 16384 0 # (Cyl. 0 - 40959) b: 62914560 41943040 swap # (Cyl. 40960 - 102399) c: 488395008 0 unused 0 0 # (Cyl. 0 - 476948*) d: 488395008 0 unused 0 0 # (Cyl. 0 - 476948*) e: 125829120 104857600 4.2BSD 2048 16384 0 # (Cyl. 102400 - 225279) f: 257708288 230686720 4.2BSD 2048 16384 0 # (Cyl. 225280 - 476948*) 14. You will also need to run [[!template id=man name="installboot" section="8"]] to make the raidset bootable. Do this for each member drive. Please note that installboot is run for the RAID partition on each member disk, and NOT on the raidn disk! This also assumes that the RAID partition (the 'e' partition, see step 4 above) starts at the beginning of the whole-NetBSD 'c' partition. If you don't do this, I don't think that the i386 MBR boot code will be able to find your bootstrap image. mount /dev/raid0a /mnt installboot /dev/wd0e /usr/mdec/bootxx_ffsv1 /mnt/boot installboot /dev/wd1e /usr/mdec/bootxx_ffsv1 /mnt/boot 15. Finally, you need to make sure your kernel has the RAID_AUTOCONFIG option, and enable the raidset as the root device: raidctl -A root raid0