How to Create and Maintain a ZFS Mirror in NAS4Free

NAS4free is an open source NAS (“Network Attached Storage”) platform based on FreeBSD that supports file sharing across Windows, Apple, and UNIX-like systems. Support for ZFS, Software RAID (0,1,5), disk encryption, S.M.A.R.T, email reports, CIFS FTP, NFS, TFTP, AFP, RSYNC, Unison, iSCSI, HAST, CARP, Bridge, UPnP, and Bittorent, are among its many features – all configurable through its GUI interface. NAS4Free can be installed on Compact Flash or USB flash drive, hard disk or booted into a “LiveCD” environment. NAS4Free code and documentation are released under the Simplified BSD License.

The ZFS (“Zetabyte File System”) is a combined file system and logical volume manager designed by Sun Microsystems. The features of ZFS include protection against data corruption, support for high storage capacities, snapshots and clones, continuous integrity checking and automatic repair. ZFS is implemented as open-source software, licensed under the Common Development and Distribution License (CDDL).

This post will describe how to setup a simple, yet resilient, ZFS-based RAID 1 (ZFS mirror) in NAS4Free. In RAID 1, data is written identically to two disk drives, thereby producing a “mirrored” set. If one disk becomes defective, the remaining disk still contains all the data. To help explain the steps involved, we’ll use two new 2TB (Terabyte) SATA 3.0 hard disks, along with the ZFS utilities available within NAS4Free, to create and configure our ZFS mirror. We’ll also discuss a few post-install activities to help maintain your ZFS mirror. All steps involved assume that the two hard drives have been installed correctly and are recognized by the BIOS, and that NAS4Free is installed and operational. The software versions used in this post were as follows:

  • NAS4Free v9.1.0.1 – Sandstorm (revision 636)

So, let’s get started.

Adding the Disks

The first thing we need to do is logically add the two new disks to NAS4Free so the system acknowledges their existence, permitting further configuration on them. Log in to the NAS4Free GUI (“Graphical User Interface”), navigate to Disks->Management, and select the “+” icon. (See Figure 1).

Screenshot showing the Disk Management page in NAS4Free

Figure 1

In the subsequent page you are presented with the configuration screen for adding new disks. Select the first 2TB disk from the drop-down menu under the “Disk” field, and select “unformatted” from among the options in the drop-down menu under the “Preformatted file system” field. The remaining options on this page can retain their default settings. Now select “Add” (See Figure 2).

Screenshot showing the Disk Management - Add Disk page in NAS4Free

Figure 2

Repeat these steps for the second 2TB disk. When complete, select “Apply changes” (See Figure 3).

Screenshot showing the Disk Management page in NAS4Free indicating that two new disks have been added

Figure 3

Note: If you’re adding disks that have previously been formatted using ZFS, NAS4Free will likely not allow you to add these disks as unformatted. You can, however, add them by selecting “zfs storage pool device” under the “Preformatted file system” field and skip the following formatting step.

Format the Disks

Now that the disks have been added, we need to format them. Navigate to Disks->Format, and select one of the newly added disks from the drop-down menu under the “Disk” field. Select “ZFS storage pool device” from the drop-down menu under the “File system” field, then select “Format disk” (See Figure 4).

Screenshot showing a newly added disk being formatted as a ZFS storage pool device in NAS4Free

Figure 4

Repeat these steps for the second disk, then navigate back to Disks->Management and ensure that both disks are present and formatted as ZFS storage pool devices (See Figure 5).

Screenshot showing two newly added disks formatted as a ZFS storage pool device in NAS4Free

Figure 5

Create a ZFS Virtual Device

We’ve added our two 2TB hard disks and formatted them. Now its time to create a ZFS “vdev” or virtual device.

Unlike traditional file systems, which reside on single devices and require a volume manager to use more than one device, ZFS filesystems are built on top of virtual storage pools called “zpools.” A zpool is constructed of virtual devices, or “vdevs,” which are themselves constructed of block devices: files, hard disk partitions, or entire disks, with the latter being the recommended usage. Block devices within a vdev may be configured in different ways, depending on needs and space available: non-redundantly (similar to RAID 0), as a mirror (RAID 1) of two or more devices, which is the focus of this post, or as a RAID-Z (similar to RAID-5) group of three or more devices.

In summary then, a vdev represents the disk drives that are used to create a zpool. A zpool can have any number of vdevs at the top of the configuration, known as a “root vdev.” If the top-level virtual devices contain two or more physical devices, the configuration provides data redundancy as mirror or RAID-Z virtual devices.

To create a virtual device consisting of our newly added hard disks, navigate to Disks->ZFS->Pools->Virtual device, and select the “+” icon. In the subsequent page, enter a name for the new virtual device under the “Name” field (e.g., “vd_1”), and select “Mirror” from among the options under the “Type” field. Now select both hard disks in the “Devices” field by holding the CTRL key and left-clicking each disk. You can also enter a description for the virtual device under the “Description” field, if desired. Select “Save” when complete (See Figure 6).

Screenshot showing the creation of a ZFS virtual device in NAS4Free

Figure 6

Create a ZFS Pool

Having created our vdev, let’s move on and create a zpool. Navigate to Disks->ZFS->Pools->Management, and select the “+” icon. In the subsequent page, enter a name for the new zpool under the “Name” field (e.g., pool_1). You should see the vdev created previously listed under the “Virtual devices” field. Select the vdev by left-clicking on it. Add a description for the virtual device under the “Description” field if desired. The remaining options can retain their default settings, resulting in the mount point for the zpool becoming /mnt/[your-zpool-name]. Select “Save” when complete (See Figure 7).

Screenshot showing the creation of a ZFS zpool in NAS4Free

Figure 7

Create a ZFS Dataset

At this point you could start using your entire zpool as storage if desired. However, a significant feature of ZFS is the concept of “datasets.” A dataset is essentially a child filesystem of the parent zpool. Imagine that the zpool is a single hard disk. In a typical hard disk you would create a single, disk-sized partition, and then format that partition with a filesystem. But if later you’d like to add additional filesystems to the disk, you have to erase and redo your partition to create more partitions to contain the new filesystems, or use a tool to actively resize existing partition, and then create the new partitions and filesystems.

With datasets, all of these partitioning efforts are unnecessary. A ZFS dataset acts like another mounted partition with no locked-in size. The quantity of disk space it takes up is only as much space as you use in populating it, or children datasets of it (of course, it can never be larger than the size of its parent zpool). You don’t have to worry about resizing partitions as ZFS inherently handles all that for you. Additionally, each dataset can have its own special configuration by modifying different behavioral variables. For example, you can determine quota and permissions independently for each dataset. Finally, datasets provide more flexibility if you need to snapshot or clone your filesystems.

To add a dataset to the zpool, navigate to Disks->ZFS->Datasets->Dataset, and select the “+” icon. Enter a name (e.g., “files”) in the “Name” field (resulting in the mount point for the dataset becoming /mnt/[your-zpool-name]/[your-dataset-name]). Ensure that the zpool created previously is selected from the drop-down list under the “Pool” field. If you’re interested in performing periodic snapshots of the dataset (discussed below), I recommend enabling the “Snapshot Visibilty” option so that the snapshots are added automatically to /mnt/[your-zpool-name]/[your-dataset-name])/.zfs/snapshots. The remaining options can be configured according to your requirements. Select “Add” when complete (See Figure 8).

Screenshot showing the creation of a ZFS dataset in NAS4Free

Figure 8

Wrapping up

We’ve successfully added two new 2TB hard disks to NAS4Free and formatted them, created a vdev and a zpool, and finally, created a dataset within our zpool. At this point you can start enabling services such as CIFS, NFS, UPnP, etc., to take advantage of your new ZFS mirror storage. Remember, when configuring some of these services to select the correct mount point for your dataset (e.g., /mnt/pool_1/files).

With the creation and configuration of our ZFS mirror out of the way, let’s move on talk about a few maintenance activities that should prove useful.

    Replacing a defective hard disk

Occasionally you may have to replace a hard disk in your zpool that has become defective. To perform the replacement, navigate to Disks->ZFS->Pools->Information and note which disk is defective or missing (e.g. ada2). Next, navigate to Disks->ZFS->Pools->Tools and offline the disk if possible by selecting “offline” from the drop-down list under the “Command” field. Ensure that “Device” is selected under the “Option” field and that the correct pool is selected under the “Pool” field. Use the checkbox to select the defective disk under the “Devices” field, then select “Send Command!” (See Figure 9).

Screenshot showing a defective disk being offlined in NAS4Free

Figure 9

Power down NAS4Free, then identify and replace the defective disk with one of equal storage capacity using, if possible, the same SATA port [Pro-tip: Take the time to label your disks correctly (e.g. ada2) when you install them. It will make physically identifying the defective disk much easier!]. Restart NAS4Free and navigate to Disks->ZFS->Pools->Information to verify the device name for the new disk. If you were able to reuse the same SATA port, the device name should be same as the defective disk (e.g. ada2). Navigate to Disks->ZFS->Pools->Tools and replace the disk by selecting “replace” from the drop-down list under the “Command” field. Ensure that “Device” is selected under the “Option” field and that the correct pool is selected under the “Pool” field. Use the checkbox to select the defective disk under the “Devices” field and the new disk from the drop-down list under the “New Device” field, then select the “Send Command!” The replacement disk should resilver fairly quickly. Verify by navigating to Disks->ZFS->Pools->Information

    Creating and managing snapshots

One of the many great features about using ZFS is its snapshot capability. A snapshot is a read-only reference to the state of a dataset at the moment the snapshot was taken. It is a reference, and not copy, because at the moment it is taken, it takes up no additional space. However, as data within the dataset changes, either because files are modified or deleted, the snapshot consumes disk space by continuing to reference the old data. This behavior allows you to easily recover files if necessary, but in doing so prevents disk space from being freed until the snapshot is deleted.

To take a snapshot manually, navigate to Disks->ZFS->Snapshots->Snapshot, and select the dataset you want to snapshot (e.g., pool_1/files) from under the “Path” field. Enter a name for the snapshot (e.g., snapshot_1), enable “Recursive” option, then select “Add” (See Figure 10).

Screenshot showing a ZFS snapshot being manually created in NAS4Free

Figure 10

NAS4Free also provides the ability to configure reoccurring snapshots under Disks->ZFS->Snapshots->Auto Snapshot. Here you can schedule a time the system should perform the snapshot and how long it should retain them, resulting in the oldest snapshot being deleted when the deadline is reached.

You have a couple of options when it comes to “rolling back” to a particular snapshot. In fact, though , rolling back is a slight misnomer, because what you’re really doing is locating the snapshot you’re interested in and copying over the files you’d like to recover. If you selected the option “Snapshot Visibility” when setting up your dataset in NAS4Free (See Disks->ZFS->Datasets->Dataset->Edit), then all snapshots for that dataset will be located in that filesystem under the directory /.zfs/snapshot (e.g., /mnt/pool_1/files/.zfs/snapshot). This allows you to simply navigate to the snapshot directory your interested in and copy files from that directory to the current filesystem.

Another way you can recover files from snapshots is to clone one to another directory. This approach has the advantage of allowing you to share out the cloned snapshot directory, say using CIFS or NFS, for some period of time until files are recovered. To clone a snapshot, navigate to Disks->ZFS->Snapshots->Snapshot and edit the snapshot you’re interested in cloning by selecting the small wrench icon. Ensure that “Clone” is selected under the “Action” field, then enter a path to the directory where the clone is to reside. Note that this path must be expressed as a relative path. So, for example, pool_1/files/oldfiles would work, but /mnt/pool_1/files/oldfiles would not, nor would /pool_1/files/oldfiles. Also note that the directory where the snapshot will be cloned does not have to be created in advance, rather it will be created automatically for you when you clone the snapshot. Now, select “Execute” when finished and your cloned snapshot will be available for use at the path you specified (e.g. /mnt/pool_1/files/oldfiles) (See Figure 11). Cloned snapshots can be destroyed at anytime by navigating to Disks->ZFS->Snapshots->Clone.

Screenshot showing a snapshot clone being manually created in NAS4Free

Figure 11
    Data scrubbing

Performing a ZFS “scrub” on a regular basis helps to identify data integrity problems, detect silent data corruptions caused by transient hardware issues, and to provide early alerts to disk failures. This operation traverses all the data in the zpool once and verifies that all blocks can be read. Scrubbing proceeds as fast as the vdevs will allow, though the priority of any disk I/O generally remains below that of normal operations. So, while the scrub operation might negatively impact performance slightly, the zpool’s data should remain usable and nearly as responsive while the scrubbing occurs.

To schedule and manage scrubs on a ZFS zpool in NAS4Free, we’ll set up a cron job to run the zpool scrub command. Navigate to System->Advanced, and select the Cron tab. Ensure that the “Enable” checkbox is selected, then enter the command zpool scrub [your-pool-name] in the “Command” field. Ensure that the command is run as the root user and enter a description for the cron job if desired. Now select when you’d like the command to run in the “Scheduled time” field. If you have consumer-quality drives, consider a weekly scrubbing schedule. If you have data center-quality drives, consider a monthly scrubbing schedule. Also note that depending upon the amount of data in the zpool, a scrub can take a long time. Consequently, you may want to consider scheduling them for evenings or weekends to minimize the impact on performance. When complete, select “Add”, then “Apply changes”. The example shown in Figure 12 shows the command zpool scrub pool_1 will run every Sunday at 1300 local time.

Screenshot showing ZFS scrubbing being configured as a cron job in NAS4Free

Figure 12

Conclusion

This post described how to create and maintain a simple, yet resilient, ZFS mirror in NAS4Free, an open source NAS implementation based on FreeBSD.

Comments

  1. Hi, very much nicely written article and provide the steps very clearly. Is it a good idea to keep reservation and quota the same value?
    Also do we have option to use dataset in iSCSI or the only option is volumes created under pool?

  2. virtual vizior, thank you. I’m afraid I’m no expert when it comes to either of those topics. I recommend you pop into the NAS4Free IRC channel – irc.dal.net/#nas4free – and consult with SIFTU or killermist there.

  3. Great post! I found this very helpful, thank you! I just recently built a NAS (i3-2100, 16GB RAM) using NAS4FREE and this guide was more helpful – to me – than the documentation/forums I read. :-)

    The only thing I’m still a little confused on is creating the vdev. I have 6x2TB HDD’s and I created a vdev with RAIDz2 … and I’m not entirely sure I did it right lol. The reason I question it is because while I was transferring files over to the NAS from Windows 7×64 the other night, I got an error half way through that said something along the lines of, “the path, or filename was too long” and the second time I got an error where it said “Lost connection to server, try again?”…. I’m not sure if that is just a Windows error (someone recommended that I use TeraCopy) but it makes me very paranoid! I don’t want to transfer over all of my files over to the NAS just to lose it, or not have it copy correctly!!!

    Also, thanks for showing what to do in-case of HDD failure, that was helpful too. It would be great if you showed what to do if the NAS installation itself became corrupt, or the device it was being stored on died. For instance, my situation: I only have 6 SATA ports on my mobo, and since i have 6 HDD’s, all of them are being used. So, I installed NAS4Free onto the fastest 2gb flash drive i had (Apacer). Now if the stick dies, or becomes corrupt, will I lose all my pool config or data on my HDD’s when I install a stock version of NAS4Free on a replacement flash drive??? That wouldn’t make much sense, so I’m going to assume no, but im really not sure lol.

    Anyway, thanks again for the great info!

  4. VenomouS, thanks for the kind comments. In fairness though, the developers over at nas4free probably have their hands full maintaining a really good NAS product. I suspect the documentation – which I too find to be sparse sometimes – will improve over time.

    Regarding the data transfer problems, that sounds more like a CIFS issue than a vdev problem. A couple of settings you might try testing with include “Use sendfile”, “Large read/write” and “Asynchronous I/O”, all under Services->CIFS/SMB->Settings.

    Regarding a OS disk failure, no worries, just reinstall the OS and import your disks. Your zpool should come right back on line for you.

  5. Excellent article, very clear and exactly what I needed. Made finishing setting up my NAS a very simple task, felt too easy but it worked with no problems, thanks for this.

  6. Very thankful to you, as i am new to setup nas4free. This article really very helping me to create a new disk for zfs. I have already lost my one and half day to create this.

  7. Very clear explanation, thanks. Do you know whether there is any way of replicating volumes or data from one Nas4free to another? – objective being to have a standby or failover system.

  8. Mark,

    You might consider HAST (“High Available Storage”), although you’ll need another NAS4Free box with similar storage capabilities, and may be overkill for your needs. Another option would be to use the ‘zfs send’ and ‘zfs receive’ commands to send/receive file system snapshots, but note that NAS4Free does not support these commands from the GUI, so you’ll have to use them from the command line or cron job. Still another option would be to use something line ‘rsync’ to copy/sync the file system data to another NAS4Free box or other BSD or Linux system.

    Good luck; let me know what you end up doing.

  9. Nice article, very useful.
    Maybe someone could even explain how to get this setup with a mirror of two disk with encryption working?
    I had no success with it.
    Encrypting single disks is easy but i’d like to do a zfs encryption with a mirror of two disks.

    Thanks for help!

  10. Hi!
    Excellent tutorial!

    Very well explained, but I need your help with some details:

    I had FreeNAS and he had a directory of users with different permissions, these permits are allocated with DataSets, but NAS4FREE not allow me to create DataSets into a DataSet, and I need that these subfolders to have different access permissions for users

    For example the parent folder is Data and inside of this, i have the folders Equipment1, Equipment2 and Equipment3.

    / mnt / data / Equipment1
    / mnt / data / Equipment2
    / mnt / data / Equipment3

    I need that User1 and User2 enter on all subfolders, but that User3 can not enter in the folder Equipment1

    How would i create Datasets and folders to allow or not the access to the users?

    I emigrated from Freenas to Nas4Free because my ambient is MAc and Windows 7, And when the users Machistosh modified files, the users of Windows 7 only can open the files in read-only mode

  11. Mike, I’m not sure. You should post your question the nas4free IRC channel on freenode, or to their forum. Let me know what you find out.

  12. Hi,
    I followed your steps and created ZFS mirror but I have a problem…in that pool if one user is creating a file the other user being on the same network cant edit and save the same file with the same name..???

    Please help

  13. Mitchelle, that’s because the owner of the file is User A. If you want to give User B write access to file then you’ll need to create a group that both users belong to and apply that group to the file or the directory containing the file. To do this in NAS4Free consult their documentation or pose the question in their IRC channel or on their forums.

  14. After days of struggle I found this and showed the title to be good and true – it now works!

    Superb, and thank you very much.

  15. Still rocking! I did all almost with no documentation in hand, built a zfs mirror with 2 x 10tb ironwolf and i was looking for some documentation to ensure that all that i did was ok, your guide confirmed it, plus what to do when a replacement time has come.

    Thank you!

  16. great instructions but pics are not quite clear until you open them individually
    but i do have some questions as a noob to xigmanas
    (nas4free) are these instructions are the same for xigmanas
    if not could you make updated

    also my first disk has data on it that i would like to keep
    can i just make 2nd disk a zfs then copy everything from first drive to second drive then create a mirror can you add instructions for this?

  17. Thanks for your comment, Michael. I do not know if the instructions are the same. I have not used XigmaNAS.

    You should not need to copy the data to second drive. I assume XigmaNAS will allow you to create a ZFS pool on the second disk, then simply attach the first drive to it too create the mirror. Your data should then be mirrored across both disks. However, I would definitely post your question at the XigmaNAS forum and/or IRC channel. The folks there should be able to provide you with more detailed instructions. Alternatively, you could simply copy your data to a third drive, create your mirror, then copy your data over to it.

Leave a Reply

Your email address will not be published. Required fields are marked *

iceflatline