Self Host Compass

Storage & backups

Do I still need RAID if I have backups?

Do I still need RAID if I already have backups?

Short answer

Do I still need RAID if I already have backups?

Keep both — they're not substitutes. RAID protects uptime: if a drive dies, your data stays online and you replace the disk without downtime. Backups protect the data itself: from accidental deletion, ransomware, corruption, or a bad command that RAID will faithfully mirror to every disk in the array. RAID is not a backup, and a backup is not high availability.

RAID combines several drives so that if one fails, your data survives on the others and stays available — it's about tolerating hardware failure without interruption. A backup is a separate copy of your data, made at a point in time, that you can restore from — it's about recovering data after it's lost or damaged, whatever the cause.

  • 1 dead drivewhat RAID shrugs off (array keeps running)
  • 0protection RAID gives against deletion or ransomwareit mirrors the change to every disk instantly
  • Bothwhat a serious home setup runs — they cover different failures

Two words for two completely different jobs

The reason this question comes up so often is that “my data is safe” quietly means two unrelated things, and RAID and backups each cover only one of them. RAID covers availability — will my server keep running when hardware fails. Backups cover recoverability — can I get my data back when it’s gone or ruined. Treating either as the other is how people end up losing everything while feeling protected.

The honest hierarchy

If you can only do one, do backups. A single drive with real, tested, offsite backups is safer than a fancy RAID array with no backups, because the failures that hurt most — deletion, ransomware, corruption, fire — are the ones RAID can’t touch. RAID is a comfort and a convenience; backups are the safety net.

If you can do both, do both, and know what each is for: RAID so a dead disk doesn’t take your services offline, backups so nothing short of losing every separate copy at once can take your data. That’s the setup worth building — not because RAID is a backup, but precisely because it never was.

What each one actually protects against
FailureRAID helps?Backup helps?
A drive diesYes — stays onlineYes, but with downtime
You delete the wrong fileNo — deletes on all disksYes
Ransomware / corruptionNo — mirrors the damageYes (offline/offsite copy)
House fire / theftNoYes (offsite copy)
RAID and backups get confused constantly, but they're answering different questions. RAID keeps me online when a disk dies; my backups are what save me when I delete the wrong thing or something encrypts it.
— James Brooks

Common questions

If RAID isn't a backup, why bother with it at home?

For uptime and convenience. If a disk fails in a RAID array, your services keep running and you swap the drive without restoring anything. Without RAID, a dead disk means downtime and a restore from backup. RAID makes the most common hardware failure a non-event — it just doesn't protect the data from you or from software.

Can I skip RAID and rely on backups alone?

Absolutely, and plenty of people do — a single disk plus good backups is a completely valid home setup. You accept that a drive failure means some downtime and a restore. That's a fair trade if uptime isn't critical to you; just make the backups real and tested.

Does ZFS change this?

ZFS adds data-integrity checks (it catches silent corruption RAID alone won't) and its own RAID-like modes, which is great — but it still isn't a backup. A ZFS snapshot on the same pool can be deleted or encrypted along with everything else. You still want a separate, offline copy.