Upgrading disks in a RAID1 Synology 2-bay drive

14

8

I have a Synology 2-bay 211j NAS with 2x1TB HDD installed as single RAID 1 volume. I'm running out of space, so I'd like to upgrade my NAS with 2x3TB HDDs. Is there any easy way to copy all data from the earlier 1TB volume(s) to the new 3TB RAID1 configuration, without utilizing extra backup devices or additional NASs?

András Szepesházi

Posted 2012-09-02T21:46:18.743

Reputation: 827

Answers

16

The solution is still applicable, even if you're using RAID1 instead of Synology Hybrid RAID (SHR). The only difference if you're using RAID1 is that you'll need to upgrade both drives, and keep them equal in size in order to maximize disk space.

As you mentioned you're using a 2-bay system, it won't make any difference anyway; the real benefit of SHR is when you're using 3+ disks, as they can be of different sizes and still minimize the wasted disk space.

Basically the procedure to upgrade a Synology is:

  1. Unplug one of the disks (and keep it in a safe place, in the case something goes wrong)
  2. Plug a new 3TB disk, and wait for it to rebuild the RAID1 (~ 1-2 days)
  3. Unplug the old 1TB and plug the second 3TB
  4. Wait for the RAID1 to be re-built (another 1-2 days)
  5. Go to Storage Manager and increase the volume size to 3TB

Done!

You still have a copy of your data on the 1TB disks, so if anything goes wrong, you can still recover the data manually. If that happens, it is strongly recommend that you do a full disk copy sector-by-sector (using dd on a Linux machine, or a tool like CloneZilla) before attempting recovery.

Despite the name, the Synology Hybrid RAID technology is not really proprietary to Synology. It's just some clever use of Multiple Device (MD) and Logical Volume Manager (LVM2). So if you have an emergency, you can still plug the drives directly to a Linux machine and have fun using md/lvm. Both LVM and MD are open, stable, well documented and widely adopted.

Gui Ambros

Posted 2012-09-02T21:46:18.743

Reputation: 459

Relevant documentation from synology: https://www.synology.com/en-global/knowledgebase/DSM/help/DSM/StorageManager/storage_pool_expand_replace_disk

– htaccess – 2019-08-26T22:22:13.813

Useful addition: http://www.synology.com/us/support/tutorials/how_to_RAID.php#4.1

– András Szepesházi – 2013-03-04T10:37:14.260

2Update worked perfectly, there was no need to expand the volume at the end of the procedure, as the NAS did that automatically. – András Szepesházi – 2013-04-05T10:44:16.937

1

According to Synology's documentation this drive support their (I assume proprietary) Synology Hybrid RAID which according to this document allows you to replace one 1 TB drive with a 3 TB drive, then once the data is replicated to the new drive you can then replace the remaining 1 TB drive with the new 3 TB drive and the system will automatically expand out to 3 TB.

Of course, if it screws up, you could be SOL (of course you would have the first 1 TB drive that you removed).

The safest bet (IMHO) would be to either borrow or purchase a standalone 1 TB drive, backup your data to this 1 TB drive, re-init your NAS with the new 3 TB drives and then restore.

HeatfanJohn

Posted 2012-09-02T21:46:18.743

Reputation: 443

Thanks for the tip. Trouble is the current drives are set up as RAID 1, and there seems to be no way to upgrade this to a Hybrid RAID configuration. So I can't even start with the suggested process. I was hoping that I could somehow mount one of the RAID 1 drives as an external HDD on my notebook, and restore data from there. Unfortunately I couldn't find a way so far to do this. – András Szepesházi – 2012-09-03T07:55:49.390