selfhosted

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

TCB13, in Joplin alternative needed
@TCB13@lemmy.world avatar

why is it Postgres db…

Why on earth are you using that? Just use WebDAV, you’ll only be required to have some WebDAV server such as Nginx and it will sync GB of notes without issues. joplinapp.org/help/apps/sync/webdav/ medium.com/…/build-a-webdav-server-with-nginx-866…

I would’ve NEVER ever moved to Joplin if it wasn’t able to sync with WebDAV. I’m not into having a special daemon running on a server for that task, makes zero sense.

colebrodine,
@colebrodine@midwest.social avatar

It works great with my self-hosted NextCloud!

jaykay,
@jaykay@lemmy.zip avatar

I need to look into webDAV then :D

TCB13,
@TCB13@lemmy.world avatar

Yes you do ahaha

azron,

This is the way.

2xsaiko, in Joplin alternative needed
@2xsaiko@discuss.tchncs.de avatar

Seconding what others have already said. You should ABSOLUTELY NOT directly back up /var/lib/postgresql if that’s what you’re doing right now. Instead, use pg_dump: www.postgresql.org/docs/current/backup-dump.html

This should also give you smaller and probably more compressible backup sizes.

Cyber, in Joplin alternative needed

Logseq. That is all. (Oh, and syncthing…)

nobloat,

Is Logseq FOSS ?

Cyber,
jaykay,
@jaykay@lemmy.zip avatar

I find their paradigm… different and not entirely sure if I like it yet, need to look into it more :)

fossphi,

Do you mind expanding a bit on how you use joplin? I’m curious about the difference you found compared to logseq

jaykay,
@jaykay@lemmy.zip avatar

I use it just as a simple as possible, instructions on how I setup backups, important thing about container’s config, etc etc. I find it easier to just have a folder “Server” and put each container in a separate note or folder. It’s too much thinking about tags, links, pages and all in logseq, notes seem all over the place.

Cyber,

Yep, now, I initially found the daily journal approach a bit strange, but I use this for work as much as personal stuff, so it actually helps…

My suggestion to your usecase would be to keep a page per “thing” ie server / container / etc and then when you make a change you can just say (on that day’s journal page):

‘’ Setup a backup for [[Server X]] and it’s going to [[NAS2]] (for example) ‘’

Then, on either of those 2 pages you’ll automatically see the link back to the journal page, so you’ll know when you did it…

I think you can disable the journal approach if it’s not useful…

But, the important part is, the files underlying the notes you’re making are in plain text with the page name as the filename, whereas with Joplin you could never find the file…

Also, if you modify the file (live) outside of Logseq, it copes with that and refreshes the content onscreen.

And the links are all dynamic… renamed the NAS? Fine, Logseq will reindex all the pages for you…

jaykay,
@jaykay@lemmy.zip avatar

I would be willing to try it, but the workarounds to get sync on iOS are what makes me not do it

node815, in Immich release v1.92.0 (edit: v1.92.1 hotfix released)

Constructively speaking, when I see this in almost every change log, it scares me away. :)

[BREAKING CHANGE]

But I will check it out sometime this week or next. :)

bdonvr,

It’s undergoing massive development, it basically went from nothing to nearly full featured in two years.

The breaking change just means you need to actually do something before updating. The software isn’t quite ready to be put on auto-update yet. Honestly the way the devs aren’t afraid to break things I think has contributed to the fast development.

Just be sure to keep a secondary backup of your photos which you should do either way.

Bitrot, (edited ) in Joplin alternative needed
@Bitrot@lemmy.sdf.org avatar

Simplenote, Notesnook, Obsidian.

Obsidian sync isn’t free, and it’s easy to violate their license if you mix work and personal notes.

I think Joplin tends to be better than most. If Obsidian was licensed and charged differently I might change my mind.

Showroom7561, in Linkwarden - An open-source collaborative bookmark manager to collect, organize and preserve webpages

Has anyone been able to get the Firefox extension to work with a self-hosted installation? It’s not accepting my login address.

hakunawazo, in Immich release v1.92.0 (edit: v1.92.1 hotfix released)

For all who have no clue what it’s for (like me 5 minutes ago), it’s a “self-hosted photo and video backup solution”.

bdonvr,

It’s really amazing, it’s a drop in replacement for Google Photos and the like with good mobile apps, face/object recognition, etc.

lukecooperatus,
@lukecooperatus@lemmy.ml avatar

I usually interpret the phrase “drop in” to mean that the replacement being referenced will also work with everything written for the original. Does “drop in” in this case mean that Immich will transparently replace Google Photos, similar to how libretube replaces YouTube? That would be amazing!

bdonvr,

“Drop in” as in “You can drop this in your Home Screen where Google Photos used to be and notice very little functional difference.”

SchizoDenji,

That’s not what drop in means…

Moonrise2473, in Linkwarden - An open-source collaborative bookmark manager to collect, organize and preserve webpages

It seems so much nicer than my nextcloud bookmarks!

Showroom7561, in Linkwarden - An open-source collaborative bookmark manager to collect, organize and preserve webpages

FYI, if you have a synology NAS and want to self-host using the docker install, these instructions work: mariushosting.com/how-to-install-linkwarden-on-yo…

Unlearned9545, in Joplin alternative needed

Connect it to a DAV server and you dont have to learn a new software.

jaykay,
@jaykay@lemmy.zip avatar

Gotta learn about that DAV thing everyone is talking about ig haha

krash, in Immich release v1.92.0 (edit: v1.92.1 hotfix released)

I really look forward to spin this up tomorrow. Awesome release as always!

aniki, in Joplin alternative needed

Why are you not using the built-in backup system?

jaykay,
@jaykay@lemmy.zip avatar

If you mean the ‘export’ function, it’s not really the same as I’d have to do it manually every time

atzanteol, in Joplin alternative needed

I think you need to learn more about how databases work. They don’t typically reclaim deleted space automatically for performance reasons. Databases like to write to a single large file they can then index into. Re-writing those files is expensive so left to the DBA (you) to determine when it should be done.

And how are you backing up the database? Just backing up /var/lib/postgres? Or are you doing a pg_dump? If the former then it’s possible your backups won’t be coherent if you haven’t stopped your database and it will contain that full history of deleted stuff. pg_dump would give you just the current data in a way that will apply properly to a new database should you need to restore

You can also consider your backup retention policy. How many backups do you need for how long?

jaykay,
@jaykay@lemmy.zip avatar

You are right, I should. They are a bit more complicated than I anticipated, and apparently I’m doing everything wrong, haha. I have backups set up to go 2 years back, but I’m checking backblaze occasionally to check, so it shouldn’t be an issue. I have two months so far lol Thanks for the write-up :)

knF, in Joplin alternative needed

Did you know that you can use Joplin on a standard webdav server? Basically it just takes up the space of the data itself. I have it on a Caddy server and works like q charm synching between Windows and Android client

observantTrapezium,
@observantTrapezium@lemmy.ca avatar

Came here to say just that. The WebDAV synchronization target is great.

jaykay,
@jaykay@lemmy.zip avatar

Yeah, I’m yet to play around with WebDAV or learning what it actually is haha Will look into it, thanks :)

Septimaeus, (edited ) in what if your cloud=provider gets hacked ?

Dammit, I came here hoping to see at least one “I have a very special set of skills.” Oh well.

Yeah I’d cut bait, rebuild from latest tapes. But also…

Septimaeus, (edited )

I’d put the corrupted backups in an eye-catching container, like a Lisa Frank backpack or Barbie lunchbox, to put on the wall in my office.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • selfhosted@lemmy.world
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #