Skip to main content

Replacing a Failed Drive - ZFS

FreeNAS makes it easy to replace a faulty drive in an array

Instructions at https://doc.freenas.org/9.3/freenas_storage.html#replacing-a-failed-drive explain it well

Basically, all the action is completed in drive status from the raid volume, and click the "Replace" button.  This is not immediately intuitive. You would think that you could also do this from "View Disks", but you cannot.

From Volumes, select the row of root of the volume that is suffering, click the "Status" icon,   It looks like a bunch of rows.

This takes you to another screen.

  • Select the disk in question, if not already offline, take it offline. 
  • Then, Press the replace button, and select the new drive from the pulldown (obviously, the new drive needs to be in the system)

Depending on how you got the new disk into the machine, you may also need to "Detach" the old disk afterwards













Comments

Popular posts from this blog

Javascript Form Validation

It's real simple. All you need to do is call a javascript function in a html  " onsubmit " in the form tag as a javascript return, like this       <form method="post" action="dosomething.php" onsubmit="return validateForm();"> If the code completes ok, the form is then sent to the page listed in "action" http://www.w3schools.com/js/js_form_validation.asp If the function specified in the onsubmit returns false, then the form is not sent to the page mentioned in action.