Enabling RAID 1 on a Mac Mini Server
Published on 17 Jul 2010 · Filed in Tutorial · 650 words (estimated 4 minutes to read)Today I bought a new Mac Mini running Mac OS X Server to replace an aging home-built Linux server that supports my home network. You might recall that in early 2009 I wrote an article about how I had worked to provide some Ubuntu-Mac integration on the home network. Although the integration has worked well since that time, many of the functions that the Ubuntu server was providing have since been taken over by an Iomega ix4-200d NAS box. It’s the Iomega that now handles all my Time Machine backups and CIFS/AFP file sharing. In addition, I’ve been looking for a way to create a “master” iTunes library for the entire house, and the Linux server with Firefly Media Server, while powerful, just wasn’t doing what I needed it to do. So I figured I’d replace it with an Intel-based Mac Mini running Mac OS X Server. The network services the Linux server is now providing would either be replaced by the Mac Mini or by VMs running on the Mac Mini vis VMware Fusion.
After I bought the Mac mini and brought it home, I was dismayed to find that Apple hadn’t enabled RAID 1 on the dual 500GB hard drives in the system. Unfortunately, enabling RAID 1 mirroring on the hard drives wasn’t as simple as using Disk Utility. I did find a way, and in the interest of helping others, here are the steps that I followed. As I type this, my Mac Mini server is downstairs rebuilding it’s RAID 1 mirror set.
Here are the steps to follow to enable RAID 1 on the drives in your Mac Mini Server:
-
First, you’ll need to boot from some source other than one of the internal hard drives. I chose to use the Mac OS X Remote Install application, found in the Utilities folder. This allows your Mac Mini server, which doesn’t have an optical drive, to boot from the optical drive on another Mac on your network (that’s assuming, of course, you have another Mac on your network). The procedure for booting remotely using the Remote Install application are already well documented, so I won’t bother to include them again here.
-
Once you’ve booted remotely, open a Terminal window and run
diskutil list
to list the disks and volumes in your system. In all the online guides to this process, the “Server HD” volume was always listed asdisk0s2
; on my system, it was listed asdisk1s2
. Just be sure to note the device names so that you can use them later. -
To convert the existing “Server HD” volume to a RAID 1 mirror, use the command
diskutil appleRAID enable mirror <device name for "Server HD">
. Mac OS X will convert the existing “Server HD” volume into a RAID 1 mirror with only one member. From what I can tell, this process is instantaneous and takes effect immediately. -
Use the
diskutil list
command again to get the device name for the new RAID set. On my system, it was referenced asdisk9
, but this will vary from system to system. -
Next, add the second hard disk as a member to the RAID 1 set using the command
diskutil appleRAID add member <device name for second hard disk> <device name for RAID set>
. For example, on my system the second hard disk was actuallydisk0s2
and the RAID set wasdisk9
, so the command looked likediskutil appleRAID add member disk0s2 disk9
.
And that should do it! Mac OS X will add the second drive to the RAID 1 set and begin the rebuilding process. If you do this right after unboxing your new Mac Mini, it will minimize the amount of time required.
I’m still waiting on my Mac Mini to finish the rebuilding process, so I’ll update this post if I discover something unusual or find that some additional steps are necessary to make everything work.