I know that for data storage the best bet is a NAS and RAID1 or something in that vein, but what about all the docker containers you are running, carefully configured services on your rpi, installed *arr services on your PC, etc.?

Do you have a simple way to automate backups and re-installs of these as well or are you just resigned to having to eventually reconfigure them all when the SD card fails, your OS needs a reinstall or the disk dies?

  • rentar42@kbin.social
    link
    fedilink
    arrow-up
    27
    ·
    7 months ago

    There’s lots of very good approaches in the comments.

    But I’d like to play the devil’s advocate: how many of you have actually recovered from a disaster that way? Ideally as a test, of course.

    A backup system that has never done a restore operations must be assumed to be broken. similar logic should be applied to disaster recovery.

    And no: I use Ansible/Docker combined approach that I’m reasonably sure could quite easily recover most stuff, but I’ve not yet fully rebuilt from just that yet.

    • Dandroid@dandroid.app
      link
      fedilink
      English
      arrow-up
      4
      ·
      7 months ago

      I restored from a backup when I swapped to a bigger SSD. Worked perfectly first try. I use rsnapshot for backups.

    • Human Crayon@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      3
      ·
      7 months ago

      I have (more than I’d like to admit) recovered entirely from backups.

      I run proxmox, everything else in a VM. All VMs get backed up to three different places once a week, backups are tested monthly on a rando proxmox box to make sure they still work. I do like the backup system built into it, serves my needs well.

      Proxmox could die and it wouldn’t make much of a difference. I reinstall proxmox, restore the VMs and I’m good to go again.

    • deepdive@lemmy.world
      link
      fedilink
      English
      arrow-up
      2
      ·
      7 months ago

      While rsync is great, I recovered partially from an outtage… Containers with databases need special care: dumping there database…

      Lesson learned !

    • Kaldo@kbin.socialOP
      link
      fedilink
      arrow-up
      2
      ·
      7 months ago

      I’m not sure what Ansible does that a simple Docker Compose doesn’t yet but I will look into it more!

      My real backup test run will be soon I think - for now I’m moving from windows to docker, but eventually I want to get an older laptop, put linux on it and just move everything to the docker on it instead and pretend it’s a server. The less “critical” stuff I have on my main PC, the less I’m going to cry when I inevitably have to reinstall the OS or replace the drives.

      • rentar42@kbin.social
        link
        fedilink
        arrow-up
        2
        ·
        edit-2
        7 months ago

        I just use Ansible to prepare the OS, set up a dedicated user, install/setup Rootless Docker and then Sync all the docker compose files from the same repo to the appropriate server and launch/update as necessary. I also use it to centrally administer any cron jobs like for backup.

        Basically if I didn’t forget anything (which is always possible) I should be able to pick a brand new RPi with an SSD and replace one of mine with a single command.

        It also allows me to keep my entire setup “documented” and configured in a single git repository.

  • friend_of_satan@lemmy.world
    link
    fedilink
    English
    arrow-up
    15
    ·
    7 months ago

    I’ve had a complete drive failure twice within the last year (really old hardware) and my ansible + docker + backup made it really easy to recover from. I got new hardware and was back up and running within a few hours.

    All of your services setup should be automated (through docker-compose or ansible or whatever) and all your configuration data should be backed up. This should make it easy to migrate services from one machine to another, and also to recover from a disaster.

  • dr_robot@kbin.social
    link
    fedilink
    arrow-up
    10
    ·
    7 months ago

    My configuration and deployment is managed entirely via an Ansible playbook repository. In case of absolute disaster, I just have to redeploy the playbook. I do run all my stuff on top of mirrored drives so a single failure isn’t disastrous if I replace the drive quickly enough.

    For when that’s not enough, the data itself is backed up hourly (via ZFS snapshots) to a spare pair of drives and nightly to S3 buckets in the cloud (via restic). Everything automated with systemd timers and some scripts. The configuration for these backups is part of the playbooks of course. I test the backups every 6 months by trying to reproduce all the services in a test VM. This has identified issues with my restoration procedure (mostly due to potential UID mismatches).

    And yes, I have once been forced to reinstall from scratch and I managed to do that rather quickly through a combination of playbooks and well tested backups.

    • subtext@lemmy.world
      link
      fedilink
      English
      arrow-up
      2
      ·
      7 months ago

      Dang I really like your idea of testing the backup in a VM… I was worried about how I’d test mine since I only have the one machine, but a VM on my desktop or something should do just fine.

  • CameronDev@programming.dev
    link
    fedilink
    English
    arrow-up
    9
    ·
    7 months ago

    I rsync my root and everything under it to a NAS, will hopefully save my data. I wrote some scripts manually to do that.

    I think the next best thing to do is to doco your setup as mich as possible. Either by typed up notes, or ansible/packer/whatever, any documentation is better than nothing if you have to rebuild.

    • foggy@lemmy.world
      link
      fedilink
      English
      arrow-up
      4
      ·
      7 months ago

      I have a 16tb USB HDD that syncs to my NAS whenever my workstation is idle for 20 minutes.

    • darvocet@infosec.pub
      link
      fedilink
      English
      arrow-up
      2
      ·
      7 months ago

      I run history and then clean it up so i have a guide to follow on the next setup. It’s not even so much for drive failure but to move to the newer OS versions when available.

      The ‘data’ is backed up by scripts that tar folders up and scp them off to another server.

  • RegalPotoo@lemmy.world
    link
    fedilink
    English
    arrow-up
    8
    ·
    7 months ago

    Infrastructure as code/config as code.

    The configurations of all the actual machines is managed by Puppet, with all its configs in a git repo. All the actual applications are deployed on top of Kubernetes, with all the configurations managed by helmfile and also tracked in git. I don’t set anything up - I describe how I want things configured, and the tools do the actual work.

    There is a “cold start” issue in my scheme - puppet requires a server component that runs on Kubernetes but I can’t deploy onto kubernetes until the host machines have had their puppet manifests applied, but at that point I can just read the code and do enough of the config by hand to bootstrap everything up from scratch if I have to

  • tetris11@lemmy.ml
    link
    fedilink
    English
    arrow-up
    9
    arrow-down
    1
    ·
    7 months ago

    Radical suggestion:

    • Once a year you buy a hard drive that can handle all of your data.
    • rsync everything to it
    • unplug it, put it back in cold storage
    • atzanteol@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      10
      arrow-down
      1
      ·
      7 months ago

      Once a… year? There’s a lot that can change in a year. Cloud storage can be pretty cheap these days. Backup to something like backblaze, S3 or Glacier nightly instead.

  • Outcide@lemmy.world
    link
    fedilink
    English
    arrow-up
    7
    ·
    edit-2
    7 months ago
    • Back everything up
    • rm -rf /
    • Now rebuild.

    Congratulations, you now know what’s required. :-P

  • namelivia@lemmy.world
    link
    fedilink
    English
    arrow-up
    6
    ·
    7 months ago

    I have all my configuration as Ansible and Terraform code, so everything can be destroyed and recreated with no effort.

    When it comes to the data, I made some bash script to copy, compress, encrypt and upload them encrypted. Not sure if this is the best but it is how I’m dealing with it right now.

    • rentar42@kbin.social
      link
      fedilink
      arrow-up
      4
      ·
      7 months ago

      I’ve got a similar setup, but use Kopia for backup which does all that you describe but also handles deduplication of data very well.

      For example I’ve added older less structured backups to my “good” backup now and since there is a lot of duplication between a 4 year old backup and a 5 year old backup it barely increased the storage space usage.

  • lemmyvore@feddit.nl
    link
    fedilink
    English
    arrow-up
    6
    ·
    7 months ago
    • Install Debian stable with the ssh server included.
    • Keep a list of the packages that were installed after (there aren’t many but still).
    • All docker containers have their compose files and persistent user data on a RAID1 array.
    • Have a backup running that rsyncs once a day /etc, /home/user and /mnt/array1/docker to another RAID1 to daily/, from daily/ once a week rsync to weekly/, from weekly/ once a monthb timestamped tarball to monthly/. Once a month I also bring out a HDD from the drawer and do a backup of monthly/ with Borg.

    For recovery:

    • Reinstall Debian + extra packages.
    • Restore the docker compose and persistent files.
    • Run docker compose on containers.

    Note that some data may need additional handling, for example databases should be dumped not rsunced.

  • Eskuero@lemmy.fromshado.ws
    link
    fedilink
    English
    arrow-up
    5
    ·
    7 months ago

    My docker containers are all configured via docker compose so I just tar the .yml files and the outside data volumes and backup that to an external drive.

    For configs living in /etc you can also backup all of them but I guess its harder to remember what you modified and where so this is why you document your setup step by step.

    Something nice and easy I use for personal documentations is mdbooks.

    • Kaldo@kbin.socialOP
      link
      fedilink
      arrow-up
      2
      ·
      edit-2
      7 months ago

      Ahh, so the best docker practice is to always just use outside data volumes and backup those separately, seems kinda obvious in retrospect. What about mounting them directly to the NAS (or even running docker from NAS?), for local networks the performance is probably good enough? That way I wouldn’t have to schedule regular syncs and transfers between “local” device storage and NAS? Dunno if it would have a negative effect on drive longevity compared to just running a daily backup.

      • Adam@doomscroll.n8e.dev
        link
        fedilink
        English
        arrow-up
        1
        ·
        7 months ago

        If you’ve got a good network path NFS mounts work great. Don’t forget to also back up your compose files. Then bringing a machine back up is just a case of running them.

  • atzanteol@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    5
    ·
    edit-2
    7 months ago
    1. Most systems are provisioned in proxmox with terraform.
    2. Configuration and setup is handled via ansible playbooks after the server is available. 2.a) Do NOT make changes on the server without updating your ansible scripts - except during troubleshooting. 2.b) Once troubleshooting is done delete and re-create the VM from scratch using only scripts to ensure it works.
    3. VM storage is considered to be ephemeral. All long-term data/config that can’t be re-created with ansible is either stored on an NFS server with a RAID5 dive configuration or backed up to that same file-server using rsnapshot.
    4. NFS server is backed-up nightly to backblaze using duplicacy.
    5. Any other non-VM systems like personal laptops and the like are backed up nightly to the file-server using rsnapshot. Those snapshots are then backed up to backblaze using duplicacy.
    • Haystack@lemmy.world
      link
      fedilink
      English
      arrow-up
      2
      ·
      7 months ago

      For real, saves so much space that would be used for VM backups.

      Aside from that, I have anything important backed up to my NAS, and Duplicati backs up from there to Backblaze B2.

  • guitarsarereal@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    7 months ago

    The most useful philosophy I’ve come across is “make the OS instance disposable.” That means an almost backups-first approach. Everything of importance to me is thoroughly backed up so once main box goes kaput, I just have to pull the most recent copy of the dataset and provision it on a new OS, maybe new hardware if needed. These days, it’s not that difficult. Docker makes scripting backups easy as pie. You write your docker-compose so all config and program state lives in a single directory. Back up the directory, and all you need to get up and running again with your services is access to Docker Hub to fetch the application code.

    Some downsides with this approach (Docker’s security model sorta assumes you can secure/segment your home network better than most people are actually able to), but honestly, for throwing up a small local service quickly it’s kind of fantastic. Also, if you decide to move away from Docker the experience will give you insight into what amounts to program state for the applications you use which will make doing the same thing without Docker that much easier.

  • CarbonatedPastaSauce@lemmy.world
    link
    fedilink
    English
    arrow-up
    4
    arrow-down
    1
    ·
    7 months ago

    I actually run everything in VMs and have two hypervisors that sync everything to each other constantly, so I have hot failover capability. They also back up their live VMs to each other every day or week depending on the criticality of the VM. That way I also have some protection against OS issues or a wonky update.

    Probably overkill for a self hosted setup but I’d rather spend money than time fixing shit because I’m lazy.

    • surewhynotlem@lemmy.world
      link
      fedilink
      English
      arrow-up
      8
      ·
      7 months ago

      HA is not redundancy. It may protect from a drive failure but it completely ignores data corruption issues.

      I learned this the hard way when my cryptomator decided to corrupt some of my files, and I noticed but didn’t have backups.