TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: How do you backup your systems?

2 pointsby someguy1233over 10 years ago

4 comments

cawover 10 years ago
Mostly using the application-specific backup tool (pgdump, mongodump, etc) to S3. For system configuration it&#x27;s all in Chef, so I backup chef.<p>For a few flat file tools I just tar up the directory and upload that.<p>Sometimes, I just take AWS volume snapshots. That&#x27;ll get the whole data or &#x2F; partition, which also lets me instant restore the machine, or attach the data partition to a newly built machine.
kephraover 10 years ago
I boot into backup cycle:<p>I have a host running DHCP, TFTP, NFS and Linux containers. Every system I install in my intranet is first created on this host. Its then booted over PXE, to sync itself to disc. The crontab contains a sync back to the NFS server every night. And the server is doing incremental backup of them all using cpio to USB discs.<p>I have 3 packs backup discs. One where the active is attached, one in the shelf, and one at a neighbor. Those 3 packs rotate every week. I handle backup in my company the same, beside that 2nd storage is carried home by the boss, and 3rd storage is a bank locker.
paulmatthijsover 10 years ago
We use a Synology running their proprietary RAID thing, with a hot spare. It&#x27;s connected to fiber as central backup hub for all machines through read-only BitTorrent Sync. It&#x27;s also functions as our Git Server. Next to that we have two remote backup sites for the most recent terabytes, and all Mac&#x27;s have Time Machines running at home...<p>And of course everyone has a Time Machine as a fallback at home for their production machines.
pwgover 10 years ago
rsnapshot (<a href="http://www.rsnapshot.org/" rel="nofollow">http:&#x2F;&#x2F;www.rsnapshot.org&#x2F;</a>) running on a Linux machine with three 2T WD red&#x27;s in RAID5 config using md. LVM sitting on top of the RAID5 to allow parceling out space as needed. One of the LVM partitions is the rsnapshot backup tree.<p>Cron setup on the backup server to take nightly rsnapshots of the machines that get backed up. The only machine that does not get nightly&#x27;s is my laptop, as it is often hibernating overnight, so it gets periodic pushes when it is not hibernating.<p>Occasional rsync of the rsnapshot tree to an offsite location.<p>Of course it helps that I have zero mswin machines.