view the rest of the comments
Selfhosted
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:
-
Be civil.
-
No spam.
-
Posts are to be related to self-hosting.
-
Don't duplicate the full text of your blog or readme if you're providing a link.
-
Submission headline should match the article title.
-
No trolling.
-
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.
-
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:
- selfh.st Newsletter and index of selfhosted software and apps
- awesome-selfhosted software
- awesome-sysadmin resources
- Self-Hosted Podcast from Jupiter Broadcasting
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
I'm using the Immich app from TrueNAS, how do I properly update it? Or is it being taken care off by TrueNAS?
Edit: I asked on the TrueNAS discord for help and someone who already updated their Immich figured out how to fix the installation afterwards. I copy&paste the guide here:
This guide assumes that Heavyscript is installed and pgAdmin.
https://github.com/Heavybullets8/heavy_script
https://truecharts.org/charts/stable/pgadmin/
Upgrade Immich to v.1.95.1.
If Immich fails to deploy check the logs
heavyscript pod --logs immich. If the logs complain that indexes need to be deleted continue with this guide.Access the shell for the postgres pod
heavyscript pod -s immich.Select the
postgrespod.Inside the pod run
envand record the password. Then typeexitto exit the pod.Get the DNS address and port for Immich postgres pod.
heavyscript dns -aLaunch pgAdmin and right-click on
ServersselectRegister > Server.In the
Connectiontab put the hostname and port from step 6. The username is immich and use the password from step 3.Once connected create a backup by expanding
Servers > Immich > Databasesand right-click onimmichthen selectBackup.... Follow the prompts to create a backup.Right-click on
immichand selectQuery Tool.Use the following query to delete your indexes.
Stop Immich with heavyscript
heavyscript app --stop immich.Once all pods have scaled down start Immich
heavyscript app --start immich.The SQL query will complain about a syntax error but it will work regardless. It just takes some time to redeploy immich.
Credit goes to @verbalsiegeengine on Discord