Server Link

IP: 192.168.0.35:2283 Tailscale IP: 100.106.138.58:2283

E-Mails

Troubleshooting

Speicherplatz erweitern
  • vgs
  • lvresize -L +<space in GB to increase>G /dev/mapper/ubuntu--vg-ubuntu--lv
  • lvs
  • resize2fs /dev/mapper/ubuntu--vg-ubuntu--lv
Backup and Restore
  • Backup (DB): ```docker exec -t immich_postgres pg_dumpall -c -U postgres | gzip > “/root/immichrestore/dump.sql.gz”

  • Restore: ```docker-compose down -v # CAUTION! Deletes all Immich data to start from scratch.

  • “docker-compose pull # Update to latest version of Immich (if desired)

  • “docker-compose create # Create Docker containers for Immich apps without running them.

  • “docker start immich_postgres # Start Postgres server

  • “sleep 10 # Wait for Postgres server to start up

  • “gunzip < “/root/immichrestore/dump.sql.gz” | docker exec -i immich_postgres psql -U postgres -d immich # Restore Backup

  • “docker-compose up -d # Start remainder of Immich apps

Database Migration Fix

“docker exec -it immich_postgres psql -U postgres -d immich -c ‘UPDATE person SET “faceAssetId”=NULL;’