this post was submitted on 20 Aug 2024
46 points (94.2% liked)

Selfhosted

39206 readers
377 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

Question.

top 18 comments
sorted by: hot top controversial new old
[–] drkt@lemmy.dbzer0.com 23 points 3 weeks ago (1 children)

By having it be a container

[–] TheBigBrother@lemmy.world 3 points 3 weeks ago (2 children)
[–] lemmyng@lemmy.ca 18 points 3 weeks ago (1 children)

The container is reproducible. Container configuration is in version control. That leaves you with the volumes mounted into the container, which you back up like any other disk.

[–] pixxelkick@lemmy.world 15 points 3 weeks ago* (last edited 3 weeks ago)

Dunno why ppl are down voting you, this is 100% the way.

Architecture as code is amazing, being able to completely wipe your server, re-install fresh, and turn it on and it goes right back to how it was is awesome.

GitOps version controlled architecture is easy to maintain, easy to rollback, and easy to modify.

I use k8s for my entire homelab, it has some initial learning curve but once you "get it" and have working configs on github, it becomes so trivial to add more stuff to it, scale it up, etc.

[–] drkt@lemmy.dbzer0.com 2 points 3 weeks ago

All of my services run on LXC containers. Some files and configs are backed up to NAS and offsite. The containers are snapshotted in their entirety before I do any work on them. A snapshot takes 5 seconds to make and causes no downtime. If I regret a change or mess it up, I can restore the snapshot in under a minute at the cost of some seconds of downtime.

My only non-container machines are my desktop (doesn't count), my NAS and the Hypervisor. The Hypervisor is very clean and wouldn't be much fuss to reinstall and the NAS is literally just Debian with NFS. All of these have a regular rsync which runs to backup the important files.

[–] mozz@mbin.grits.dev 15 points 3 weeks ago (1 children)
[–] beeng@discuss.tchncs.de 4 points 3 weeks ago (1 children)

You Borg the whole disk? Or which paths?

[–] helix@feddit.org 8 points 3 weeks ago (1 children)
[–] beeng@discuss.tchncs.de 2 points 3 weeks ago (1 children)
[–] mozz@mbin.grits.dev 5 points 3 weeks ago

Also, export your DBs first, and snapshot the export instead of the raw DB files

[–] sxan@midwest.social 12 points 3 weeks ago

Mine is 3-pronged:

  1. btrfs + snapper takes care of most level-1 situations, and I take a snapshot of every /root change, plus one nightly /home snapshot. but it's pretty demanding on disk space, and doesn't handle drive failure; so I also do
  2. restic + USB drive, which I can cram way more snapshots onto, so I keep a couple of weeks of daily snapshots, one monthly snapshot for a year, and one snapshot per year, going back several years. I currently have snapshots from my past 3 computers on one giant drive. However, these drives can also fail, and won't protect me from burglary or house fire, so I also do
  3. restic + BackBlaze. I just take a nightly snapshot for every computer and VM I manage. My monthly B2 bill is around $10. The VMs don't change much, and I only snapshot data and config directories (only stuff I can't spin up fairly quickly in a container, or via a simple install command), so most of the charge comes from a couple of decades of amateur digital photography, and an archive of all our digital music (because I'll be damned if I'm going to spend weeks re-digitizing all those CDs).

The only "restore entire system b/c of screwing up the OS" is #1. I could - and probably should, make a whole disk snapshot to a backup drive via #2, but I'm waiting until bcachefs is more mature, then I'll migrate to that, for the interesting replication options it allows which would make real-time disk replication to slow USB drives practical; I'd only need to snapshot /efi after kernel upgrades, and if I had that set up and a spare NVME on hand, I could probably be back up and running within a half hour.

[–] eskuero@lemmy.fromshado.ws 8 points 3 weeks ago

I just stop my containers and tar gzip their compose files, their volumes and the /etc folder on the host

[–] Decronym@lemmy.decronym.xyz 4 points 3 weeks ago* (last edited 2 weeks ago)

Acronyms, initialisms, abbreviations, contractions, and other phrases which expand to something larger, that I've seen in this thread:

Fewer Letters More Letters
LXC Linux Containers
NAS Network-Attached Storage
NFS Network File System, a Unix-based file-sharing protocol known for performance and efficiency
k8s Kubernetes container management package

4 acronyms in this thread; the most compressed thread commented on today has 16 acronyms.

[Thread #931 for this sub, first seen 21st Aug 2024, 08:35] [FAQ] [Full list] [Contact] [Source code]

[–] ashaman2007@lemm.ee 3 points 3 weeks ago* (last edited 3 weeks ago)

Relax and Recover for bare metal backup of the OS critical components and directories, and Deja Dup (or Gnome Backup) for user files

[–] fjordbasa@lemmy.world 2 points 3 weeks ago

I found UrBackup to be very easy to use. Very little nitty-gritty setup and configuration required to get started. I have a feeling those with more experience will (rightly) pick apart if I’m missing something egregiously bad about it, but it worked for my small homelab use cases.

[–] conrad82@lemmy.world 2 points 3 weeks ago* (last edited 3 weeks ago)

I use proxmox and proxmox backup server (in a vm). I reinstall them both, and re-add lxc and vm and their drives from backup. has already worked once.

important files are additionaly synced to laptop and phone using syncthing.

proxmox backups (which are encrypted) are rcloned to backblaze for offsite backup

[–] geography082@lemm.ee 1 points 3 weeks ago

Rclone with crypt option, to any super cheap cloud storage.

[–] Shimitar@feddit.it 1 points 2 weeks ago

Don't. Backup data, reinstall software.

Answer.