Account Dissapeared, External Library Not Working With New Account, Somehow Fixed With Docker. #5825

Closed
opened 2026-02-05 11:46:21 +03:00 by OVERLORD · 0 comments
Owner

Originally created by @CoachKincaid on GitHub (Apr 14, 2025).

I have searched the existing issues, both open and closed, to make sure this is not a duplicate report.

  • Yes

The bug

TLDR: After successful setup of account and external library, account went missing and I had to recreate it. After recreating it, external library was no longer showing any media inside and the files I had put in the trash were no longer there.

Steps I took:

  1. I created an admin account and successfully linked an external library (/home/pictures)
  2. Marked some files for deletion (kept them in trash)
  3. Shut down computer. Go to bed.
  4. New day. Boot computer. Being new to linux, docker, and immich, I first run Sudo docker-compose up -d (assumed it was good to do)
  5. I open my browser (firefox), go to my Immich bookmark, and the new account creation screen appears.
  6. I complete the new account creation with the exact same user and password.
  7. I notice the docker-compose.yml file remained intact from the previous session (with external library mapped)
  8. Attempt to link external library in Immich app - successfully validated.
  9. Attempted to scan the external library for media - nothing happens.
  10. Cleared cookies, tried again, nothing happened.
  11. Decided to drag and drop files from the external library location to see if that would trigger anything. Photos uploaded, but external library still showed no media. Important: no files were in the trash
  12. got frustrated, had to try something else, ran command Sudo docker-compose up (no -d this time). Let it run. canceled it with ctrl + c, ran it again. This time it ran into an error "Nest] 17 - 04/14/2025, 11:02:57 AM ERROR [Api:EventRepository] Websocket connection error: UnauthorizedException: Invalid user token"
  13. exited with ctrl+c
  14. ran command Sudo docker-compose up -d (with -d this time).
  15. The old account came back to life, the external library was attached, and my filer were back in the trash as if nothing had ever happened.

The OS that Immich Server is running on

Linux Mint 22.1

Version of Immich Server

v1.131.3

Version of Immich Mobile App

NA

Platform with the issue

  • Server
  • Web
  • Mobile

Your docker-compose.yml content

#
# WARNING: To install Immich, follow our guide: https://immich.app/docs/install/docker-compose
#
# Make sure to use the docker-compose.yml of the current release:
#
# https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml
#
# The compose file on main may not be compatible with the latest release.

name: immich

services:
  immich-server:
    container_name: immich_server
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    # extends:
    #   file: hwaccel.transcoding.yml
    #   service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
    volumes:
      # Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
      - /home/tim/Pictures:/mnt/media/Pictures:ro
    env_file:
      - .env
    ports:
      - '2283:2283'
    depends_on:
      - redis
      - database
    restart: always
    healthcheck:
      disable: false

  immich-machine-learning:
    container_name: immich_machine_learning
    # For hardware acceleration, add one of -[armnn, cuda, rocm, openvino, rknn] to the image tag.
    # Example tag: ${IMMICH_VERSION:-release}-cuda
    image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
    # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
    #   file: hwaccel.ml.yml
    #   service: cpu # set to one of [armnn, cuda, rocm, openvino, openvino-wsl, rknn] for accelerated inference - use the `-wsl` version for WSL2 where applicable
    volumes:
      - model-cache:/cache
    env_file:
      - .env
    restart: always
    healthcheck:
      disable: false

  redis:
    container_name: immich_redis
    image: docker.io/redis:6.2-alpine@sha256:148bb5411c184abd288d9aaed139c98123eeb8824c5d3fce03cf721db58066d8
    healthcheck:
      test: redis-cli ping || exit 1
    restart: always

  database:
    container_name: immich_postgres
    image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:739cdd626151ff1f796dc95a6591b55a714f341c737e27f045019ceabf8e8c52
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
      POSTGRES_INITDB_ARGS: '--data-checksums'
    volumes:
      # Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file
      - ${DB_DATA_LOCATION}:/var/lib/postgresql/data
    healthcheck:
      test: >-
        pg_isready --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" || exit 1; Chksum="$$(psql --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" --tuples-only --no-align --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')"; echo "checksum failure count is $$Chksum"; [ "$$Chksum" = '0' ] || exit 1
      interval: 5m
      start_interval: 30s
      start_period: 5m
    command: >-
      postgres -c shared_preload_libraries=vectors.so -c 'search_path="$$user", public, vectors' -c logging_collector=on -c max_wal_size=2GB -c shared_buffers=512MB -c wal_compression=on
    restart: always

volumes:
  model-cache:

Your .env content

# You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables

# The location where your uploaded files are stored
UPLOAD_LOCATION=./library
# The location where your database files are stored
DB_DATA_LOCATION=./postgres

# To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
TZ=Uranus/sphinkter

# The Immich version to use. You can pin this to a specific version like "v1.71.0"
IMMICH_VERSION=release

# Connection secret for postgres. You should change it to a random password
# Please use only the characters `A-Za-z0-9`, without special characters or spaces
DB_PASSWORD=ToiletPaper

# The values below this line do not need to be changed
###################################################################################
DB_USERNAME=postgres
DB_DATABASE_NAME=immich

Reproduction steps

  1. I created an admin account and successfully linked an external library (/home/pictures)
  2. Marked some files for deletion (kept them in trash)
  3. Shut down computer. Go to bed.
  4. New day. Boot computer. Being new to linux, docker, and immich, I first run Sudo docker-compose up -d (assumed it was good to do)
  5. I open my browser (firefox), go to my Immich bookmark, and the new account creation screen appears.
  6. I complete the new account creation with the exact same user and password.
  7. I notice the docker-compose.yml file remained intact from the previous session (with external library mapped)
  8. Attempt to link external library in Immich app - successfully validated.
  9. Attempted to scan the external library for media - nothing happens.
  10. Cleared cookies, tried again, nothing happened.
  11. Decided to drag and drop files from the external library location to see if that would trigger anything. Photos uploaded, but external library still showed no media. Important: no files were in the trash
  12. got frustrated, had to try something else, ran command Sudo docker-compose up (no -d this time). Let it run. canceled it with ctrl + c, ran it again. This time it ran into an error "Nest] 17 - 04/14/2025, 11:02:57 AM ERROR [Api:EventRepository] Websocket connection error: UnauthorizedException: Invalid user token"
  13. exited with ctrl+c
  14. ran command Sudo docker-compose up -d (with -d this time).
  15. The old account came back to life, the external library was attached, and my filer were back in the trash as if nothing had ever happened.

Relevant log output

Charmin@John:~$ sudo docker compose up -d
[sudo] password for tim:            
no configuration file provided: not found
Charmin@John:~$ cd ./immich-app
Charmin@John:~/immich-app$ sudo docker compose up -d
[+] Running 4/4
 ✔ Container immich_redis             Running                              0.0s 
 ✔ Container immich_machine_learning  Running                              0.0s 
 ✔ Container immich_postgres          Runni...                             0.0s 
 ✔ Container immich_server            Running                              0.0s 
Charmin@John:~/immich-app$ sudo docker compose up
[+] Running 4/4
 ✔ Container immich_redis             Running                              0.0s 
 ✔ Container immich_machine_learning  Running                              0.0s 
 ✔ Container immich_postgres          Runni...                             0.0s 
 ✔ Container immich_server            Running                              0.0s 
Attaching to immich_machine_learning, immich_postgres, immich_redis, immich_server
immich_server            | [Nest] 17  - 04/14/2025, 10:57:56 AM     LOG [Api:EventRepository] Websocket Connect:    4AAmSpMTUnr3CZyHAAAD
immich_server            | [Nest] 17  - 04/14/2025, 10:58:21 AM     LOG [Api:LibraryService~xo37uv9v] Starting to scan library 51c2c08b-458d-4e6b-8f45-fad407d0c2ed
immich_server            | [Nest] 7  - 04/14/2025, 10:58:21 AM     LOG [Microservices:LibraryService] Starting disk crawl of 1 import path(s) for library 51c2c08b-458d-4e6b-8f45-fad407d0c2ed...
immich_server            | [Nest] 7  - 04/14/2025, 10:58:21 AM     LOG [Microservices:LibraryService] Library 51c2c08b-458d-4e6b-8f45-fad407d0c2ed is empty, no need to check assets
immich_server            | [Nest] 7  - 04/14/2025, 10:58:21 AM     LOG [Microservices:LibraryService] Finished disk crawl, 0 file(s) found on disk and queued 0 file(s) for import into 51c2c08b-458d-4e6b-8f45-fad407d0c2ed
immich_server            | [Nest] 17  - 04/14/2025, 10:58:49 AM     LOG [Api:EventRepository] Websocket Connect:    o8VfOmMbgHAWIroyAAAF
immich_redis             | 1:M 14 Apr 2025 09:01:50.082 * 100 changes in 300 seconds. Saving...
immich_redis             | 1:M 14 Apr 2025 09:01:50.083 * Background saving started by pid 90
immich_redis             | 90:C 14 Apr 2025 09:01:50.109 * DB saved on disk
immich_redis             | 90:C 14 Apr 2025 09:01:50.109 * RDB: 0 MB of memory used by copy-on-write
immich_redis             | 1:M 14 Apr 2025 09:01:50.183 * Background saving terminated with success
Gracefully stopping... (press Ctrl+C again to force)
[+] Stopping 4/4
 ✔ Container immich_server            Stopped                                                                                                                                                                                            0.2s 
 ✔ Container immich_machine_learning  Stopped                                                                                                                                                                                            0.2s 
 ✔ Container immich_postgres          Stopped                                                                                                                                                                                            0.2s 
 ✔ Container immich_redis             Stopped                                                                                                                                                                                            0.2s 
Charmin@John:~/immich-app$ sudo docker compose up
[+] Running 4/4
 ✔ Container immich_redis             Created                                                                                                                                                                                            0.0s 
 ✔ Container immich_postgres          Created                                                                                                                                                                                            0.0s 
 ✔ Container immich_machine_learning  Created                                                                                                                                                                                            0.0s 
 ✔ Container immich_server            Created                                                                                                                                                                                            0.0s 
Attaching to immich_machine_learning, immich_postgres, immich_redis, immich_server
immich_redis             | 1:C 14 Apr 2025 09:02:40.544 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
immich_redis             | 1:C 14 Apr 2025 09:02:40.544 # Redis version=6.2.17, bits=64, commit=00000000, modified=0, pid=1, just started
immich_redis             | 1:C 14 Apr 2025 09:02:40.544 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
immich_redis             | 1:M 14 Apr 2025 09:02:40.545 * monotonic clock: POSIX clock_gettime
immich_redis             | 1:M 14 Apr 2025 09:02:40.545 * Running mode=standalone, port=6379.
immich_redis             | 1:M 14 Apr 2025 09:02:40.545 # Server initialized
immich_redis             | 1:M 14 Apr 2025 09:02:40.545 # WARNING Memory overcommit must be enabled! Without it, a background save or replication may fail under low memory condition. Being disabled, it can can also cause failures without low memory condition, see https://github.com/jemalloc/jemalloc/issues/1328. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
immich_redis             | 1:M 14 Apr 2025 09:02:40.546 * Loading RDB produced by version 6.2.17
immich_redis             | 1:M 14 Apr 2025 09:02:40.546 * RDB age 19 seconds
immich_redis             | 1:M 14 Apr 2025 09:02:40.546 * RDB memory usage when created 5.05 Mb
immich_redis             | 1:M 14 Apr 2025 09:02:40.563 # Done loading RDB, keys loaded: 39, keys expired: 15.
immich_redis             | 1:M 14 Apr 2025 09:02:40.563 * DB loaded from disk: 0.017 seconds
immich_redis             | 1:M 14 Apr 2025 09:02:40.563 * Ready to accept connections
immich_server            | Initializing Immich v1.131.3
immich_server            | Detected CPU Cores: 8
immich_postgres          | 
immich_postgres          | PostgreSQL Database directory appears to contain a database; Skipping initialization
immich_postgres          | 
immich_postgres          | 2025-04-14 09:02:41.398 UTC [1] LOG:  redirecting log output to logging collector process
immich_postgres          | 2025-04-14 09:02:41.398 UTC [1] HINT:  Future log output will appear in directory "log".
immich_machine_learning  | [04/14/25 11:02:42] INFO     Starting gunicorn 23.0.0                           
immich_machine_learning  | [04/14/25 11:02:42] INFO     Listening at: http://[::]:3003 (8)                 
immich_machine_learning  | [04/14/25 11:02:42] INFO     Using worker: immich_ml.config.CustomUvicornWorker 
immich_machine_learning  | [04/14/25 11:02:42] INFO     Booting worker with pid: 9                         
immich_server            | Starting api worker
immich_server            | Starting microservices worker
immich_machine_learning  | [04/14/25 11:02:44] INFO     Started server process [9]                         
immich_machine_learning  | [04/14/25 11:02:44] INFO     Waiting for application startup.                   
immich_machine_learning  | [04/14/25 11:02:44] INFO     Created in-memory cache with unloading after 300s  
immich_machine_learning  |                              of inactivity.                                     
immich_machine_learning  | [04/14/25 11:02:44] INFO     Initialized request thread pool with 8 threads.    
immich_machine_learning  | [04/14/25 11:02:44] INFO     Application startup complete.                      
immich_server            | [Nest] 7  - 04/14/2025, 11:02:45 AM     LOG [Microservices:EventRepository] Initialized websocket server
immich_server            | [Nest] 17  - 04/14/2025, 11:02:45 AM     LOG [Api:EventRepository] Initialized websocket server
immich_server            | [Nest] 7  - 04/14/2025, 11:02:45 AM     LOG [Microservices:DatabaseRepository] Running migrations, this may take a while
immich_server            | [Nest] 7  - 04/14/2025, 11:02:45 AM     LOG [Microservices:MetadataService] Bootstrapping metadata service
immich_server            | [Nest] 7  - 04/14/2025, 11:02:45 AM     LOG [Microservices:MetadataService] Initializing metadata service
immich_server            | [Nest] 7  - 04/14/2025, 11:02:45 AM     LOG [Microservices:MapRepository] Initializing metadata repository
immich_server            | [Nest] 7  - 04/14/2025, 11:02:45 AM     LOG [Microservices:MetadataService] Initialized local reverse geocoder
immich_server            | [Nest] 17  - 04/14/2025, 11:02:45 AM     LOG [Api:DatabaseRepository] Running migrations, this may take a while
immich_server            | [Nest] 7  - 04/14/2025, 11:02:46 AM     LOG [Microservices:ServerService] Feature Flags: {
immich_server            |   "smartSearch": true,
immich_server            |   "facialRecognition": true,
immich_server            |   "duplicateDetection": true,
immich_server            |   "map": true,
immich_server            |   "reverseGeocoding": true,
immich_server            |   "importFaces": false,
immich_server            |   "sidecar": true,
immich_server            |   "search": true,
immich_server            |   "trash": true,
immich_server            |   "oauth": false,
immich_server            |   "oauthAutoLaunch": false,
immich_server            |   "passwordLogin": true,
immich_server            |   "configFile": false,
immich_server            |   "email": false
immich_server            | }
immich_server            | [Nest] 7  - 04/14/2025, 11:02:46 AM     LOG [Microservices:StorageService] Verifying system mount folder checks, current state: {"mountChecks":{"thumbs":true,"upload":true,"backups":true,"library":true,"profile":true,"encoded-video":true}}
immich_server            | [Nest] 7  - 04/14/2025, 11:02:46 AM     LOG [Microservices:StorageService] Successfully verified system mount folder checks
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:ServerService] Feature Flags: {
immich_server            |   "smartSearch": true,
immich_server            |   "facialRecognition": true,
immich_server            |   "duplicateDetection": true,
immich_server            |   "map": true,
immich_server            |   "reverseGeocoding": true,
immich_server            |   "importFaces": false,
immich_server            |   "sidecar": true,
immich_server            |   "search": true,
immich_server            |   "trash": true,
immich_server            |   "oauth": false,
immich_server            |   "oauthAutoLaunch": false,
immich_server            |   "passwordLogin": true,
immich_server            |   "configFile": false,
immich_server            |   "email": false
immich_server            | }
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:StorageService] Verifying system mount folder checks, current state: {"mountChecks":{"thumbs":true,"upload":true,"backups":true,"library":true,"profile":true,"encoded-video":true}}
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:StorageService] Successfully verified system mount folder checks
immich_server            | [Nest] 7  - 04/14/2025, 11:02:46 AM     LOG [Microservices:SystemConfigService] LogLevel=log (set via system config)
immich_server            | [Nest] 7  - 04/14/2025, 11:02:46 AM     LOG [Microservices:NestFactory] Starting Nest application...
immich_server            | [Nest] 7  - 04/14/2025, 11:02:46 AM     LOG [Microservices:InstanceLoader] BullModule dependencies initialized
immich_server            | [Nest] 7  - 04/14/2025, 11:02:46 AM     LOG [Microservices:InstanceLoader] ClsModule dependencies initialized
immich_server            | [Nest] 7  - 04/14/2025, 11:02:46 AM     LOG [Microservices:InstanceLoader] ClsCommonModule dependencies initialized
immich_server            | [Nest] 7  - 04/14/2025, 11:02:46 AM     LOG [Microservices:InstanceLoader] OpenTelemetryModule dependencies initialized
immich_server            | [Nest] 7  - 04/14/2025, 11:02:46 AM     LOG [Microservices:InstanceLoader] KyselyModule dependencies initialized
immich_server            | [Nest] 7  - 04/14/2025, 11:02:46 AM     LOG [Microservices:InstanceLoader] KyselyCoreModule dependencies initialized
immich_server            | [Nest] 7  - 04/14/2025, 11:02:46 AM     LOG [Microservices:InstanceLoader] DiscoveryModule dependencies initialized
immich_server            | [Nest] 7  - 04/14/2025, 11:02:46 AM     LOG [Microservices:InstanceLoader] OpenTelemetryCoreModule dependencies initialized
immich_server            | [Nest] 7  - 04/14/2025, 11:02:46 AM     LOG [Microservices:InstanceLoader] ClsRootModule dependencies initialized
immich_server            | [Nest] 7  - 04/14/2025, 11:02:46 AM     LOG [Microservices:InstanceLoader] BullModule dependencies initialized
immich_server            | [Nest] 7  - 04/14/2025, 11:02:46 AM     LOG [Microservices:InstanceLoader] BullModule dependencies initialized
immich_server            | [Nest] 7  - 04/14/2025, 11:02:46 AM     LOG [Microservices:InstanceLoader] MicroservicesModule dependencies initialized
immich_server            | [Nest] 7  - 04/14/2025, 11:02:46 AM     LOG [Microservices:NestApplication] Nest application successfully started
immich_server            | [Nest] 7  - 04/14/2025, 11:02:46 AM     LOG [Microservices:Bootstrap] Immich Microservices is running [v1.131.3] [production] 
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:SystemConfigService] LogLevel=log (set via system config)
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:NestFactory] Starting Nest application...
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:InstanceLoader] BullModule dependencies initialized
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:InstanceLoader] ClsModule dependencies initialized
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:InstanceLoader] ClsCommonModule dependencies initialized
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:InstanceLoader] OpenTelemetryModule dependencies initialized
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:InstanceLoader] KyselyModule dependencies initialized
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:InstanceLoader] KyselyCoreModule dependencies initialized
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:InstanceLoader] DiscoveryModule dependencies initialized
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:InstanceLoader] OpenTelemetryCoreModule dependencies initialized
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:InstanceLoader] ClsRootModule dependencies initialized
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:InstanceLoader] ScheduleModule dependencies initialized
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:InstanceLoader] BullModule dependencies initialized
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:InstanceLoader] BullModule dependencies initialized
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:InstanceLoader] ApiModule dependencies initialized
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] APIKeyController {/api/api-keys}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/api-keys, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/api-keys, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/api-keys/:id, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/api-keys/:id, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/api-keys/:id, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] ActivityController {/api/activities}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/activities, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/activities, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/activities/statistics, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/activities/:id, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] AlbumController {/api/albums}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/albums, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/albums, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/albums/statistics, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id, PATCH} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id/assets, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id/assets, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id/users, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id/user/:userId, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id/user/:userId, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] AppController {/api}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/.well-known/immich, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/custom.css, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] AssetController {/api/assets}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/memory-lane, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/random, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/device/:deviceId, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/statistics, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/jobs, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/assets, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/assets, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/:id, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/:id, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] AssetMediaController {/api/assets}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/assets, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/:id/original, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/:id/original, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/:id/thumbnail, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/:id/video/playback, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/exist, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/bulk-upload-check, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] AuthController {/api/auth}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/auth/login, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/auth/admin-sign-up, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/auth/validateToken, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/auth/change-password, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/auth/logout, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] DownloadController {/api/download}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/download/info, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/download/archive, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] DuplicateController {/api/duplicates}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/duplicates, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] FaceController {/api/faces}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/faces, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/faces, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/faces/:id, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/faces/:id, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] JobController {/api/jobs}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/jobs, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/jobs, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/jobs/:id, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] LibraryController {/api/libraries}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/libraries, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/libraries, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/libraries/:id, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/libraries/:id, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/libraries/:id, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/libraries/:id/validate, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/libraries/:id/statistics, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/libraries/:id/scan, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] MapController {/api/map}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/map/markers, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/map/reverse-geocode, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] MemoryController {/api/memories}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/memories, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/memories, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/memories/:id, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/memories/:id, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/memories/:id, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/memories/:id/assets, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/memories/:id/assets, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] NotificationController {/api/notifications}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/notifications/test-email, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/notifications/templates/:name, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] OAuthController {/api/oauth}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/oauth/mobile-redirect, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/oauth/authorize, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/oauth/callback, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/oauth/link, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/oauth/unlink, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] PartnerController {/api/partners}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/partners, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/partners/:id, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/partners/:id, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/partners/:id, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] PersonController {/api/people}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/people, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/people, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/people, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/people/:id, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/people/:id, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/people/:id/statistics, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/people/:id/thumbnail, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/people/:id/reassign, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/people/:id/merge, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] ReportController {/api/reports}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/reports, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/reports/checksum, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/reports/fix, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] SearchController {/api/search}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/search/metadata, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/search/random, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/search/smart, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/search/explore, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/search/person, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/search/places, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/search/cities, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/search/suggestions, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] ServerController {/api/server}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/server/about, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/server/storage, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/server/ping, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/server/version, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/server/version-history, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/server/features, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/server/theme, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/server/config, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/server/statistics, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/server/media-types, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/server/license, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/server/license, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/server/license, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] SessionController {/api/sessions}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/sessions, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/sessions, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/sessions/:id, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] SharedLinkController {/api/shared-links}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/shared-links, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/shared-links/me, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/shared-links, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id, PATCH} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id/assets, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id/assets, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] StackController {/api/stacks}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/stacks, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/stacks, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/stacks, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/stacks/:id, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/stacks/:id, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/stacks/:id, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] SyncController {/api/sync}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/sync/full-sync, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/sync/delta-sync, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/sync/stream, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/sync/ack, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/sync/ack, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/sync/ack, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] SystemConfigController {/api/system-config}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/system-config, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/system-config/defaults, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/system-config, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/system-config/storage-template-options, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] SystemMetadataController {/api/system-metadata}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/system-metadata/admin-onboarding, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/system-metadata/admin-onboarding, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/system-metadata/reverse-geocoding-state, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] TagController {/api/tags}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/tags, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/tags, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/tags, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/tags/assets, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/tags/:id, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/tags/:id, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/tags/:id, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/tags/:id/assets, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/tags/:id/assets, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] TimelineController {/api/timeline}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/timeline/buckets, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/timeline/bucket, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] TrashController {/api/trash}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/trash/empty, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/trash/restore, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/trash/restore/assets, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] UserAdminController {/api/admin/users}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/users, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/users, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/preferences, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/preferences, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/restore, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] UserController {/api/users}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/users, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/users/me, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/users/me, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/users/me/preferences, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/users/me/preferences, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/users/me/license, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/users/me/license, PUT} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/users/me/license, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/users/:id, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/users/profile-image, POST} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/users/profile-image, DELETE} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/users/:id/profile-image, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RoutesResolver] ViewController {/api/view}:
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/view/folder/unique-paths, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:RouterExplorer] Mapped {/api/view/folder, GET} route
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:NestApplication] Nest application successfully started
immich_server            | [Nest] 17  - 04/14/2025, 11:02:46 AM     LOG [Api:Bootstrap] Immich Server is listening on http://[::1]:2283 [v1.131.3] [production] 
immich_server            | [Nest] 17  - 04/14/2025, 11:02:57 AM     LOG [Api:EventRepository] Websocket Connect:    ZG3bRiOxwBu8vLFfAAAB
immich_server            | [Nest] 17  - 04/14/2025, 11:02:57 AM     LOG [Api:EventRepository] Websocket Connect:    bqgJh7jhStJqFdgiAAAD
immich_server            | [Nest] 17  - 04/14/2025, 11:02:57 AM   ERROR [Api:EventRepository] Websocket connection error: UnauthorizedException: Invalid user token
immich_server            | UnauthorizedException: Invalid user token
immich_server            |     at AuthService.validateSession (/usr/src/app/dist/services/auth.service.js:256:15)
immich_server            |     at process.processTicksAndRejections (node:internal/process/task_queues:105:5)
immich_server            |     at async AuthService.authenticate (/usr/src/app/dist/services/auth.service.js:86:25)
immich_server            |     at async EventRepository.handleConnection (/usr/src/app/dist/repositories/event.repository.js:93:26)
immich_server            | [Nest] 17  - 04/14/2025, 11:02:57 AM     LOG [Api:EventRepository] Websocket Disconnect: ZG3bRiOxwBu8vLFfAAAB
immich_server            | [Nest] 17  - 04/14/2025, 11:02:57 AM   ERROR [Api:EventRepository] Websocket connection error: UnauthorizedException: Invalid user token
immich_server            | UnauthorizedException: Invalid user token
immich_server            |     at AuthService.validateSession (/usr/src/app/dist/services/auth.service.js:256:15)
immich_server            |     at process.processTicksAndRejections (node:internal/process/task_queues:105:5)
immich_server            |     at async AuthService.authenticate (/usr/src/app/dist/services/auth.service.js:86:25)
immich_server            |     at async EventRepository.handleConnection (/usr/src/app/dist/repositories/event.repository.js:93:26)
immich_server            | [Nest] 17  - 04/14/2025, 11:02:57 AM     LOG [Api:EventRepository] Websocket Disconnect: bqgJh7jhStJqFdgiAAAD
Gracefully stopping... (press Ctrl+C again to force)
[+] Stopping 4/4
 ✔ Container immich_machine_learning  Stopped                                                                                                                                                                                            0.1s 
 ✔ Container immich_server            Stopped                                                                                                                                                                                            0.2s 
 ✔ Container immich_redis             Stopped                                                                                                                                                                                            0.2s 
 ✔ Container immich_postgres          Stopped                                                                                                                                                                                            0.2s 
Charmin@John:~/immich-app$ sudo docker compose up -d
[+] Running 4/4
 ✔ Container immich_redis             Started                                                                                                                                                                                            0.2s 
 ✔ Container immich_machine_learning  Started                                                                                                                                                                                            0.2s 
 ✔ Container immich_postgres          Started                                                                                                                                                                                            0.3s 
 ✔ Container immich_server            Started                                                                                                                                                                                            0.5s 
Charmin@John:~/immich-app$

Additional information

No response

Originally created by @CoachKincaid on GitHub (Apr 14, 2025). ### I have searched the existing issues, both open and closed, to make sure this is not a duplicate report. - [x] Yes ### The bug TLDR: After successful setup of account and external library, account went missing and I had to recreate it. After recreating it, external library was no longer showing any media inside and the files I had put in the trash were no longer there. Steps I took: 1. I created an admin account and successfully linked an external library (/home/pictures) 2. Marked some files for deletion (kept them in trash) 3. Shut down computer. Go to bed. 4. New day. Boot computer. Being new to linux, docker, and immich, I first run Sudo docker-compose up -d (assumed it was good to do) 5. I open my browser (firefox), go to my Immich bookmark, and the new account creation screen appears. 6. I complete the new account creation with the exact same user and password. 7. I notice the docker-compose.yml file remained intact from the previous session (with external library mapped) 8. Attempt to link external library in Immich app - successfully validated. 9. Attempted to scan the external library for media - nothing happens. 10. Cleared cookies, tried again, nothing happened. 11. Decided to drag and drop files from the external library location to see if that would trigger anything. Photos uploaded, but external library still showed no media. Important: **no files were in the trash** 12. got frustrated, had to try something else, ran command Sudo docker-compose up (no -d this time). Let it run. canceled it with ctrl + c, ran it again. This time it ran into an error "Nest] 17 - 04/14/2025, 11:02:57 AM ERROR [Api:EventRepository] Websocket connection error: UnauthorizedException: Invalid user token" 13. exited with ctrl+c 14. ran command Sudo docker-compose up -d (with -d this time). 15. The old account came back to life, the external library was attached, and my filer were back in the trash as if nothing had ever happened. ### The OS that Immich Server is running on Linux Mint 22.1 ### Version of Immich Server v1.131.3 ### Version of Immich Mobile App NA ### Platform with the issue - [x] Server - [ ] Web - [ ] Mobile ### Your docker-compose.yml content ```YAML # # WARNING: To install Immich, follow our guide: https://immich.app/docs/install/docker-compose # # Make sure to use the docker-compose.yml of the current release: # # https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml # # The compose file on main may not be compatible with the latest release. name: immich services: immich-server: container_name: immich_server image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} # extends: # file: hwaccel.transcoding.yml # service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding volumes: # Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file - ${UPLOAD_LOCATION}:/usr/src/app/upload - /etc/localtime:/etc/localtime:ro - /home/tim/Pictures:/mnt/media/Pictures:ro env_file: - .env ports: - '2283:2283' depends_on: - redis - database restart: always healthcheck: disable: false immich-machine-learning: container_name: immich_machine_learning # For hardware acceleration, add one of -[armnn, cuda, rocm, openvino, rknn] to the image tag. # Example tag: ${IMMICH_VERSION:-release}-cuda image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release} # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration # file: hwaccel.ml.yml # service: cpu # set to one of [armnn, cuda, rocm, openvino, openvino-wsl, rknn] for accelerated inference - use the `-wsl` version for WSL2 where applicable volumes: - model-cache:/cache env_file: - .env restart: always healthcheck: disable: false redis: container_name: immich_redis image: docker.io/redis:6.2-alpine@sha256:148bb5411c184abd288d9aaed139c98123eeb8824c5d3fce03cf721db58066d8 healthcheck: test: redis-cli ping || exit 1 restart: always database: container_name: immich_postgres image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:739cdd626151ff1f796dc95a6591b55a714f341c737e27f045019ceabf8e8c52 environment: POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_USER: ${DB_USERNAME} POSTGRES_DB: ${DB_DATABASE_NAME} POSTGRES_INITDB_ARGS: '--data-checksums' volumes: # Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file - ${DB_DATA_LOCATION}:/var/lib/postgresql/data healthcheck: test: >- pg_isready --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" || exit 1; Chksum="$$(psql --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" --tuples-only --no-align --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')"; echo "checksum failure count is $$Chksum"; [ "$$Chksum" = '0' ] || exit 1 interval: 5m start_interval: 30s start_period: 5m command: >- postgres -c shared_preload_libraries=vectors.so -c 'search_path="$$user", public, vectors' -c logging_collector=on -c max_wal_size=2GB -c shared_buffers=512MB -c wal_compression=on restart: always volumes: model-cache: ``` ### Your .env content ```Shell # You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables # The location where your uploaded files are stored UPLOAD_LOCATION=./library # The location where your database files are stored DB_DATA_LOCATION=./postgres # To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List TZ=Uranus/sphinkter # The Immich version to use. You can pin this to a specific version like "v1.71.0" IMMICH_VERSION=release # Connection secret for postgres. You should change it to a random password # Please use only the characters `A-Za-z0-9`, without special characters or spaces DB_PASSWORD=ToiletPaper # The values below this line do not need to be changed ################################################################################### DB_USERNAME=postgres DB_DATABASE_NAME=immich ``` ### Reproduction steps 1. I created an admin account and successfully linked an external library (/home/pictures) 2. Marked some files for deletion (kept them in trash) 3. Shut down computer. Go to bed. 4. New day. Boot computer. Being new to linux, docker, and immich, I first run Sudo docker-compose up -d (assumed it was good to do) 5. I open my browser (firefox), go to my Immich bookmark, and the new account creation screen appears. 6. I complete the new account creation with the exact same user and password. 7. I notice the docker-compose.yml file remained intact from the previous session (with external library mapped) 8. Attempt to link external library in Immich app - successfully validated. 9. Attempted to scan the external library for media - nothing happens. 10. Cleared cookies, tried again, nothing happened. 11. Decided to drag and drop files from the external library location to see if that would trigger anything. Photos uploaded, but external library still showed no media. Important: **no files were in the trash** 12. got frustrated, had to try something else, ran command Sudo docker-compose up (no -d this time). Let it run. canceled it with ctrl + c, ran it again. This time it ran into an error "Nest] 17 - 04/14/2025, 11:02:57 AM ERROR [Api:EventRepository] Websocket connection error: UnauthorizedException: Invalid user token" 13. exited with ctrl+c 14. ran command Sudo docker-compose up -d (with -d this time). 15. The old account came back to life, the external library was attached, and my filer were back in the trash as if nothing had ever happened. ### Relevant log output ```shell Charmin@John:~$ sudo docker compose up -d [sudo] password for tim: no configuration file provided: not found Charmin@John:~$ cd ./immich-app Charmin@John:~/immich-app$ sudo docker compose up -d [+] Running 4/4 ✔ Container immich_redis Running 0.0s ✔ Container immich_machine_learning Running 0.0s ✔ Container immich_postgres Runni... 0.0s ✔ Container immich_server Running 0.0s Charmin@John:~/immich-app$ sudo docker compose up [+] Running 4/4 ✔ Container immich_redis Running 0.0s ✔ Container immich_machine_learning Running 0.0s ✔ Container immich_postgres Runni... 0.0s ✔ Container immich_server Running 0.0s Attaching to immich_machine_learning, immich_postgres, immich_redis, immich_server immich_server | [Nest] 17 - 04/14/2025, 10:57:56 AM LOG [Api:EventRepository] Websocket Connect: 4AAmSpMTUnr3CZyHAAAD immich_server | [Nest] 17 - 04/14/2025, 10:58:21 AM LOG [Api:LibraryService~xo37uv9v] Starting to scan library 51c2c08b-458d-4e6b-8f45-fad407d0c2ed immich_server | [Nest] 7 - 04/14/2025, 10:58:21 AM LOG [Microservices:LibraryService] Starting disk crawl of 1 import path(s) for library 51c2c08b-458d-4e6b-8f45-fad407d0c2ed... immich_server | [Nest] 7 - 04/14/2025, 10:58:21 AM LOG [Microservices:LibraryService] Library 51c2c08b-458d-4e6b-8f45-fad407d0c2ed is empty, no need to check assets immich_server | [Nest] 7 - 04/14/2025, 10:58:21 AM LOG [Microservices:LibraryService] Finished disk crawl, 0 file(s) found on disk and queued 0 file(s) for import into 51c2c08b-458d-4e6b-8f45-fad407d0c2ed immich_server | [Nest] 17 - 04/14/2025, 10:58:49 AM LOG [Api:EventRepository] Websocket Connect: o8VfOmMbgHAWIroyAAAF immich_redis | 1:M 14 Apr 2025 09:01:50.082 * 100 changes in 300 seconds. Saving... immich_redis | 1:M 14 Apr 2025 09:01:50.083 * Background saving started by pid 90 immich_redis | 90:C 14 Apr 2025 09:01:50.109 * DB saved on disk immich_redis | 90:C 14 Apr 2025 09:01:50.109 * RDB: 0 MB of memory used by copy-on-write immich_redis | 1:M 14 Apr 2025 09:01:50.183 * Background saving terminated with success Gracefully stopping... (press Ctrl+C again to force) [+] Stopping 4/4 ✔ Container immich_server Stopped 0.2s ✔ Container immich_machine_learning Stopped 0.2s ✔ Container immich_postgres Stopped 0.2s ✔ Container immich_redis Stopped 0.2s Charmin@John:~/immich-app$ sudo docker compose up [+] Running 4/4 ✔ Container immich_redis Created 0.0s ✔ Container immich_postgres Created 0.0s ✔ Container immich_machine_learning Created 0.0s ✔ Container immich_server Created 0.0s Attaching to immich_machine_learning, immich_postgres, immich_redis, immich_server immich_redis | 1:C 14 Apr 2025 09:02:40.544 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo immich_redis | 1:C 14 Apr 2025 09:02:40.544 # Redis version=6.2.17, bits=64, commit=00000000, modified=0, pid=1, just started immich_redis | 1:C 14 Apr 2025 09:02:40.544 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf immich_redis | 1:M 14 Apr 2025 09:02:40.545 * monotonic clock: POSIX clock_gettime immich_redis | 1:M 14 Apr 2025 09:02:40.545 * Running mode=standalone, port=6379. immich_redis | 1:M 14 Apr 2025 09:02:40.545 # Server initialized immich_redis | 1:M 14 Apr 2025 09:02:40.545 # WARNING Memory overcommit must be enabled! Without it, a background save or replication may fail under low memory condition. Being disabled, it can can also cause failures without low memory condition, see https://github.com/jemalloc/jemalloc/issues/1328. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect. immich_redis | 1:M 14 Apr 2025 09:02:40.546 * Loading RDB produced by version 6.2.17 immich_redis | 1:M 14 Apr 2025 09:02:40.546 * RDB age 19 seconds immich_redis | 1:M 14 Apr 2025 09:02:40.546 * RDB memory usage when created 5.05 Mb immich_redis | 1:M 14 Apr 2025 09:02:40.563 # Done loading RDB, keys loaded: 39, keys expired: 15. immich_redis | 1:M 14 Apr 2025 09:02:40.563 * DB loaded from disk: 0.017 seconds immich_redis | 1:M 14 Apr 2025 09:02:40.563 * Ready to accept connections immich_server | Initializing Immich v1.131.3 immich_server | Detected CPU Cores: 8 immich_postgres | immich_postgres | PostgreSQL Database directory appears to contain a database; Skipping initialization immich_postgres | immich_postgres | 2025-04-14 09:02:41.398 UTC [1] LOG: redirecting log output to logging collector process immich_postgres | 2025-04-14 09:02:41.398 UTC [1] HINT: Future log output will appear in directory "log". immich_machine_learning | [04/14/25 11:02:42] INFO Starting gunicorn 23.0.0 immich_machine_learning | [04/14/25 11:02:42] INFO Listening at: http://[::]:3003 (8) immich_machine_learning | [04/14/25 11:02:42] INFO Using worker: immich_ml.config.CustomUvicornWorker immich_machine_learning | [04/14/25 11:02:42] INFO Booting worker with pid: 9 immich_server | Starting api worker immich_server | Starting microservices worker immich_machine_learning | [04/14/25 11:02:44] INFO Started server process [9] immich_machine_learning | [04/14/25 11:02:44] INFO Waiting for application startup. immich_machine_learning | [04/14/25 11:02:44] INFO Created in-memory cache with unloading after 300s immich_machine_learning | of inactivity. immich_machine_learning | [04/14/25 11:02:44] INFO Initialized request thread pool with 8 threads. immich_machine_learning | [04/14/25 11:02:44] INFO Application startup complete. immich_server | [Nest] 7 - 04/14/2025, 11:02:45 AM LOG [Microservices:EventRepository] Initialized websocket server immich_server | [Nest] 17 - 04/14/2025, 11:02:45 AM LOG [Api:EventRepository] Initialized websocket server immich_server | [Nest] 7 - 04/14/2025, 11:02:45 AM LOG [Microservices:DatabaseRepository] Running migrations, this may take a while immich_server | [Nest] 7 - 04/14/2025, 11:02:45 AM LOG [Microservices:MetadataService] Bootstrapping metadata service immich_server | [Nest] 7 - 04/14/2025, 11:02:45 AM LOG [Microservices:MetadataService] Initializing metadata service immich_server | [Nest] 7 - 04/14/2025, 11:02:45 AM LOG [Microservices:MapRepository] Initializing metadata repository immich_server | [Nest] 7 - 04/14/2025, 11:02:45 AM LOG [Microservices:MetadataService] Initialized local reverse geocoder immich_server | [Nest] 17 - 04/14/2025, 11:02:45 AM LOG [Api:DatabaseRepository] Running migrations, this may take a while immich_server | [Nest] 7 - 04/14/2025, 11:02:46 AM LOG [Microservices:ServerService] Feature Flags: { immich_server | "smartSearch": true, immich_server | "facialRecognition": true, immich_server | "duplicateDetection": true, immich_server | "map": true, immich_server | "reverseGeocoding": true, immich_server | "importFaces": false, immich_server | "sidecar": true, immich_server | "search": true, immich_server | "trash": true, immich_server | "oauth": false, immich_server | "oauthAutoLaunch": false, immich_server | "passwordLogin": true, immich_server | "configFile": false, immich_server | "email": false immich_server | } immich_server | [Nest] 7 - 04/14/2025, 11:02:46 AM LOG [Microservices:StorageService] Verifying system mount folder checks, current state: {"mountChecks":{"thumbs":true,"upload":true,"backups":true,"library":true,"profile":true,"encoded-video":true}} immich_server | [Nest] 7 - 04/14/2025, 11:02:46 AM LOG [Microservices:StorageService] Successfully verified system mount folder checks immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:ServerService] Feature Flags: { immich_server | "smartSearch": true, immich_server | "facialRecognition": true, immich_server | "duplicateDetection": true, immich_server | "map": true, immich_server | "reverseGeocoding": true, immich_server | "importFaces": false, immich_server | "sidecar": true, immich_server | "search": true, immich_server | "trash": true, immich_server | "oauth": false, immich_server | "oauthAutoLaunch": false, immich_server | "passwordLogin": true, immich_server | "configFile": false, immich_server | "email": false immich_server | } immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:StorageService] Verifying system mount folder checks, current state: {"mountChecks":{"thumbs":true,"upload":true,"backups":true,"library":true,"profile":true,"encoded-video":true}} immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:StorageService] Successfully verified system mount folder checks immich_server | [Nest] 7 - 04/14/2025, 11:02:46 AM LOG [Microservices:SystemConfigService] LogLevel=log (set via system config) immich_server | [Nest] 7 - 04/14/2025, 11:02:46 AM LOG [Microservices:NestFactory] Starting Nest application... immich_server | [Nest] 7 - 04/14/2025, 11:02:46 AM LOG [Microservices:InstanceLoader] BullModule dependencies initialized immich_server | [Nest] 7 - 04/14/2025, 11:02:46 AM LOG [Microservices:InstanceLoader] ClsModule dependencies initialized immich_server | [Nest] 7 - 04/14/2025, 11:02:46 AM LOG [Microservices:InstanceLoader] ClsCommonModule dependencies initialized immich_server | [Nest] 7 - 04/14/2025, 11:02:46 AM LOG [Microservices:InstanceLoader] OpenTelemetryModule dependencies initialized immich_server | [Nest] 7 - 04/14/2025, 11:02:46 AM LOG [Microservices:InstanceLoader] KyselyModule dependencies initialized immich_server | [Nest] 7 - 04/14/2025, 11:02:46 AM LOG [Microservices:InstanceLoader] KyselyCoreModule dependencies initialized immich_server | [Nest] 7 - 04/14/2025, 11:02:46 AM LOG [Microservices:InstanceLoader] DiscoveryModule dependencies initialized immich_server | [Nest] 7 - 04/14/2025, 11:02:46 AM LOG [Microservices:InstanceLoader] OpenTelemetryCoreModule dependencies initialized immich_server | [Nest] 7 - 04/14/2025, 11:02:46 AM LOG [Microservices:InstanceLoader] ClsRootModule dependencies initialized immich_server | [Nest] 7 - 04/14/2025, 11:02:46 AM LOG [Microservices:InstanceLoader] BullModule dependencies initialized immich_server | [Nest] 7 - 04/14/2025, 11:02:46 AM LOG [Microservices:InstanceLoader] BullModule dependencies initialized immich_server | [Nest] 7 - 04/14/2025, 11:02:46 AM LOG [Microservices:InstanceLoader] MicroservicesModule dependencies initialized immich_server | [Nest] 7 - 04/14/2025, 11:02:46 AM LOG [Microservices:NestApplication] Nest application successfully started immich_server | [Nest] 7 - 04/14/2025, 11:02:46 AM LOG [Microservices:Bootstrap] Immich Microservices is running [v1.131.3] [production] immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:SystemConfigService] LogLevel=log (set via system config) immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:NestFactory] Starting Nest application... immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:InstanceLoader] BullModule dependencies initialized immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:InstanceLoader] ClsModule dependencies initialized immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:InstanceLoader] ClsCommonModule dependencies initialized immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:InstanceLoader] OpenTelemetryModule dependencies initialized immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:InstanceLoader] KyselyModule dependencies initialized immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:InstanceLoader] KyselyCoreModule dependencies initialized immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:InstanceLoader] DiscoveryModule dependencies initialized immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:InstanceLoader] OpenTelemetryCoreModule dependencies initialized immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:InstanceLoader] ClsRootModule dependencies initialized immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:InstanceLoader] ScheduleModule dependencies initialized immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:InstanceLoader] BullModule dependencies initialized immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:InstanceLoader] BullModule dependencies initialized immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:InstanceLoader] ApiModule dependencies initialized immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] APIKeyController {/api/api-keys}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/api-keys, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/api-keys, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/api-keys/:id, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/api-keys/:id, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/api-keys/:id, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] ActivityController {/api/activities}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/activities, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/activities, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/activities/statistics, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/activities/:id, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] AlbumController {/api/albums}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/albums, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/albums, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/albums/statistics, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/albums/:id, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/albums/:id, PATCH} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/albums/:id, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/albums/:id/assets, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/albums/:id/assets, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/albums/:id/users, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/albums/:id/user/:userId, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/albums/:id/user/:userId, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] AppController {/api}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/.well-known/immich, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/custom.css, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] AssetController {/api/assets}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/assets/memory-lane, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/assets/random, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/assets/device/:deviceId, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/assets/statistics, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/assets/jobs, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/assets, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/assets, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/assets/:id, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/assets/:id, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] AssetMediaController {/api/assets}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/assets, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/assets/:id/original, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/assets/:id/original, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/assets/:id/thumbnail, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/assets/:id/video/playback, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/assets/exist, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/assets/bulk-upload-check, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] AuthController {/api/auth}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/auth/login, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/auth/admin-sign-up, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/auth/validateToken, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/auth/change-password, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/auth/logout, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] DownloadController {/api/download}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/download/info, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/download/archive, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] DuplicateController {/api/duplicates}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/duplicates, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] FaceController {/api/faces}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/faces, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/faces, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/faces/:id, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/faces/:id, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] JobController {/api/jobs}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/jobs, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/jobs, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/jobs/:id, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] LibraryController {/api/libraries}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/libraries, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/libraries, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/libraries/:id, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/libraries/:id, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/libraries/:id, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/libraries/:id/validate, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/libraries/:id/statistics, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/libraries/:id/scan, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] MapController {/api/map}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/map/markers, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/map/reverse-geocode, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] MemoryController {/api/memories}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/memories, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/memories, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/memories/:id, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/memories/:id, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/memories/:id, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/memories/:id/assets, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/memories/:id/assets, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] NotificationController {/api/notifications}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/notifications/test-email, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/notifications/templates/:name, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] OAuthController {/api/oauth}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/oauth/mobile-redirect, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/oauth/authorize, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/oauth/callback, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/oauth/link, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/oauth/unlink, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] PartnerController {/api/partners}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/partners, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/partners/:id, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/partners/:id, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/partners/:id, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] PersonController {/api/people}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/people, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/people, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/people, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/people/:id, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/people/:id, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/people/:id/statistics, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/people/:id/thumbnail, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/people/:id/reassign, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/people/:id/merge, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] ReportController {/api/reports}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/reports, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/reports/checksum, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/reports/fix, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] SearchController {/api/search}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/search/metadata, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/search/random, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/search/smart, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/search/explore, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/search/person, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/search/places, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/search/cities, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/search/suggestions, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] ServerController {/api/server}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/server/about, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/server/storage, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/server/ping, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/server/version, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/server/version-history, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/server/features, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/server/theme, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/server/config, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/server/statistics, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/server/media-types, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/server/license, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/server/license, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/server/license, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] SessionController {/api/sessions}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/sessions, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/sessions, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/sessions/:id, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] SharedLinkController {/api/shared-links}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/shared-links, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/shared-links/me, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/shared-links, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id, PATCH} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id/assets, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id/assets, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] StackController {/api/stacks}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/stacks, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/stacks, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/stacks, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/stacks/:id, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/stacks/:id, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/stacks/:id, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] SyncController {/api/sync}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/sync/full-sync, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/sync/delta-sync, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/sync/stream, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/sync/ack, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/sync/ack, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/sync/ack, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] SystemConfigController {/api/system-config}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/system-config, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/system-config/defaults, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/system-config, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/system-config/storage-template-options, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] SystemMetadataController {/api/system-metadata}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/system-metadata/admin-onboarding, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/system-metadata/admin-onboarding, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/system-metadata/reverse-geocoding-state, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] TagController {/api/tags}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/tags, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/tags, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/tags, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/tags/assets, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/tags/:id, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/tags/:id, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/tags/:id, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/tags/:id/assets, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/tags/:id/assets, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] TimelineController {/api/timeline}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/timeline/buckets, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/timeline/bucket, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] TrashController {/api/trash}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/trash/empty, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/trash/restore, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/trash/restore/assets, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] UserAdminController {/api/admin/users}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/admin/users, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/admin/users, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/preferences, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/preferences, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/restore, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] UserController {/api/users}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/users, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/users/me, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/users/me, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/users/me/preferences, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/users/me/preferences, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/users/me/license, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/users/me/license, PUT} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/users/me/license, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/users/:id, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/users/profile-image, POST} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/users/profile-image, DELETE} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/users/:id/profile-image, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RoutesResolver] ViewController {/api/view}: immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/view/folder/unique-paths, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:RouterExplorer] Mapped {/api/view/folder, GET} route immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:NestApplication] Nest application successfully started immich_server | [Nest] 17 - 04/14/2025, 11:02:46 AM LOG [Api:Bootstrap] Immich Server is listening on http://[::1]:2283 [v1.131.3] [production] immich_server | [Nest] 17 - 04/14/2025, 11:02:57 AM LOG [Api:EventRepository] Websocket Connect: ZG3bRiOxwBu8vLFfAAAB immich_server | [Nest] 17 - 04/14/2025, 11:02:57 AM LOG [Api:EventRepository] Websocket Connect: bqgJh7jhStJqFdgiAAAD immich_server | [Nest] 17 - 04/14/2025, 11:02:57 AM ERROR [Api:EventRepository] Websocket connection error: UnauthorizedException: Invalid user token immich_server | UnauthorizedException: Invalid user token immich_server | at AuthService.validateSession (/usr/src/app/dist/services/auth.service.js:256:15) immich_server | at process.processTicksAndRejections (node:internal/process/task_queues:105:5) immich_server | at async AuthService.authenticate (/usr/src/app/dist/services/auth.service.js:86:25) immich_server | at async EventRepository.handleConnection (/usr/src/app/dist/repositories/event.repository.js:93:26) immich_server | [Nest] 17 - 04/14/2025, 11:02:57 AM LOG [Api:EventRepository] Websocket Disconnect: ZG3bRiOxwBu8vLFfAAAB immich_server | [Nest] 17 - 04/14/2025, 11:02:57 AM ERROR [Api:EventRepository] Websocket connection error: UnauthorizedException: Invalid user token immich_server | UnauthorizedException: Invalid user token immich_server | at AuthService.validateSession (/usr/src/app/dist/services/auth.service.js:256:15) immich_server | at process.processTicksAndRejections (node:internal/process/task_queues:105:5) immich_server | at async AuthService.authenticate (/usr/src/app/dist/services/auth.service.js:86:25) immich_server | at async EventRepository.handleConnection (/usr/src/app/dist/repositories/event.repository.js:93:26) immich_server | [Nest] 17 - 04/14/2025, 11:02:57 AM LOG [Api:EventRepository] Websocket Disconnect: bqgJh7jhStJqFdgiAAAD Gracefully stopping... (press Ctrl+C again to force) [+] Stopping 4/4 ✔ Container immich_machine_learning Stopped 0.1s ✔ Container immich_server Stopped 0.2s ✔ Container immich_redis Stopped 0.2s ✔ Container immich_postgres Stopped 0.2s Charmin@John:~/immich-app$ sudo docker compose up -d [+] Running 4/4 ✔ Container immich_redis Started 0.2s ✔ Container immich_machine_learning Started 0.2s ✔ Container immich_postgres Started 0.3s ✔ Container immich_server Started 0.5s Charmin@John:~/immich-app$ ``` ### Additional information _No response_
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#5825