this post was submitted on 04 Sep 2025
522 points (97.1% liked)

Selfhosted

62256 readers
435 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:

Detailed Rules Post

  1. Be civil.

  2. No spam.

  3. Posts are to be related to self-hosting.

  4. Don't duplicate the full text of your blog or readme if you're providing a link.

  5. Submission headline should match the article title.

  6. No trolling.

  7. Promotion posts require active participation, with an account that is at least 30 days old. F/LOSS without a paywall has exceptions, with requirements. See the rules link for details. Tags [CBH] or [AIP] are required, see the links in Rule 8 for details.

  8. AI-related discussions and AI-involved promotional posts have additional requirements for tagging, as noted in Rule 7 and the AI & Promotional Post Expanded Rules post, and find example disclosures here.

Resources:

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

Questions? DM the mods!

founded 3 years ago
MODERATORS
 

Nextcloud asked in a poll at https://mastodon.social/@nextcloud@mastodon.xyz/115095096413238457 what database its users are running. Interestingly one fifth replied they don't know. Should people know better where their data is stored, or is it a good thing everything is running so smoothly people don't need to know what their software stack is built upon?

you are viewing a single comment's thread
view the rest of the comments
[–] Ooops@feddit.org 29 points 1 year ago (1 children)

Isn't that the whole point of containerised solutions? Having some pre-setup, auto-updating solution with very little requirement to dive into the details like what your database is and which dependencies you need to manage...

[–] dan@upvote.au 3 points 1 year ago (2 children)

You still need to know what database system is being used in order to make backups of the database. You can't just snapshot or backup the data directory while a database is running, because you might end up with an inconsistent state that won't restore properly. You need to either stop the DB before doing the backup, or use the relevant DB-specific tools to perform a backup.

[–] onslaught545@lemmy.zip 10 points 1 year ago (1 children)

Most of my containerized solutions do that for me.

[–] dan@upvote.au 4 points 1 year ago* (last edited 1 year ago)

Which containers do automatic DB backups? Normally the database is a separate container, unless the app is using SQLite. Is there a MySQL or PostgreSQL container that does automated backups?

[–] Ooops@feddit.org 2 points 1 year ago (1 children)

So one in five doesn't do proper backups. That's much better than expected... 😅

[–] dan@upvote.au 1 points 1 year ago (1 children)

I'd say 9/10 aren't doing proper backups given most people don't actually do DR runs and verify whether they can fully recover from their backups. If you don't test your backups, you don't have backups!

[–] monogram@feddit.nl 1 points 1 year ago* (last edited 1 year ago)

90% is a bit low if the requirement is a full backup of nextcloud with database that is easily restorable.

If they do backups, most just copy the important stuff manually to an external hard drive.