immich-app / immich

High performance self-hosted photo and video management solution.
https://immich.app
GNU Affero General Public License v3.0
53.44k stars 2.83k forks source link

When I sync the photos on my android phone, it does not start any of the jobs #9846

Closed godalming123 closed 6 months ago

godalming123 commented 6 months ago

The bug

When I sync the photos on my android phone, it does not start any of the jobs.

The OS that Immich Server is running on

Docker in ubuntu

Version of Immich Server

v1.105.1

Version of Immich Mobile App

v1.105.0 build 139

Platform with the issue

Your docker-compose.yml content

name: immich
services:
  server:
    container_name: server
    image: ghcr.io/immich-app/immich-server:release
    command: ['start.sh', 'immich']
    volumes:
      - ./library:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
    env_file:
      - .env
    ports:
      - 2283:3001
    depends_on:
      - redis
      - database
    restart: always

  microservices:
    container_name: microservices
    image: ghcr.io/immich-app/immich-server:release
    command: ['start.sh', 'microservices']
    volumes:
      - ./library:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
    env_file:
      - .env
    depends_on:
      - redis
      - database
    restart: always

  machine-learning:
    container_name: machine_learning
    image: ghcr.io/immich-app/immich-machine-learning:release
    volumes:
      - model-cache:/cache
    env_file:
      - .env
    restart: always

  redis:
    container_name: redis
    image: registry.hub.docker.com/library/redis:6.2-alpine@sha256:84882e87b54734154586e5f8abd4dce69fe7311315e2fc6d67c29614c8de2672
    restart: always

  database:
    container_name: postgres
    image: registry.hub.docker.com/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
      POSTGRES_INITDB_ARGS: '--data-checksums'
    volumes:
      - ./postgres:/var/lib/postgresql/data
    restart: always
    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"]

volumes:
  model-cache:

Your .env content

DB_PASSWORD=fdacsefdnsxjduepskzisdwqfv
DB_USERNAME=postgres
DB_DATABASE_NAME=immich

Reproduction steps

1. Install immich with docker
2. Install and setup android app
3. Sync photos
...

Relevant log output

redis     | 1:C 29 May 2024 10:12:02.033 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
postgres  | The files belonging to this database system will be owned by user "postgres".
postgres  | This user must also own the server process.
postgres  |
postgres  | The database cluster will be initialized with locale "en_US.utf8".
postgres  | The default database encoding has accordingly been set to "UTF8".
postgres  | The default text search configuration will be set to "english".
postgres  |
postgres  | Data page checksums are enabled.
postgres  |
postgres  | fixing permissions on existing directory /var/lib/postgresql/data ... ok
postgres  | creating subdirectories ... ok
postgres  | selecting dynamic shared memory implementation ... posix
postgres  | selecting default max_connections ... 100
postgres  | selecting default shared_buffers ... 128MB
postgres  | selecting default time zone ... Etc/UTC
postgres  | creating configuration files ... ok
postgres  | running bootstrap script ... ok
postgres  | performing post-bootstrap initialization ... ok
postgres  | initdb: warning: enabling "trust" authentication for local connections
postgres  | You can change this by editing pg_hba.conf or using the option -A, or
postgres  | --auth-local and --auth-host, the next time you run initdb.
postgres  | syncing data to disk ... ok
redis     | 1:C 29 May 2024 10:12:02.033 # Redis version=6.2.14, bits=64, commit=00000000, modified=0, pid=1, just started
redis             | 1:C 29 May 2024 10:12:02.033 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
redis             | 1:M 29 May 2024 10:12:02.033 * monotonic clock: POSIX clock_gettime
redis             | 1:M 29 May 2024 10:12:02.034 * Running mode=standalone, port=6379.
machine_learning  | [05/29/24 11:02:37] INFO     Starting gunicorn 22.0.0
machine_learning  | [05/29/24 11:02:37] INFO     Listening at: http://[::]:3003 (9)
machine_learning  | [05/29/24 11:02:37] INFO     Using worker: app.config.CustomUvicornWorker
machine_learning  | [05/29/24 11:02:37] INFO     Booting worker with pid: 13
machine_learning  | [05/29/24 11:02:44] INFO     Started server process [13]
machine_learning  | [05/29/24 11:02:44] INFO     Waiting for application startup.
machine_learning  | [05/29/24 11:02:44] INFO     Created in-memory cache with unloading after 300s
machine_learning  |                              of inactivity.
machine_learning  | [05/29/24 11:02:44] INFO     Initialized request thread pool with 4 threads.
machine_learning  | [05/29/24 11:02:44] INFO     Application startup complete.
postgres          |
postgres          |
postgres          | Success. You can now start the database server using:
postgres          |
postgres          |     pg_ctl -D /var/lib/postgresql/data -l logfile start
postgres          |
redis             | 1:M 29 May 2024 10:12:02.034 # Server initialized
redis             | 1:M 29 May 2024 10:12:02.034 # 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.
redis             | 1:M 29 May 2024 10:12:02.037 * Ready to accept connections
redis             | 1:M 29 May 2024 10:17:03.073 * 100 changes in 300 seconds. Saving...
redis             | 1:M 29 May 2024 10:17:03.073 * Background saving started by pid 21
redis             | 21:C 29 May 2024 10:17:03.473 * DB saved on disk
redis             | 21:C 29 May 2024 10:17:03.474 * RDB: 1 MB of memory used by copy-on-write
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [EventRepository] Initialized websocket server
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [EventRepository] Initialized websocket server
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [SystemConfigService] LogLevel=log (set via system config)
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [SystemConfigService] LogLevel=log (set via system config)
redis             | 1:M 29 May 2024 10:17:03.474 * Background saving terminated with success
redis             | 1:M 29 May 2024 10:22:42.861 * 100 changes in 300 seconds. Saving...
redis             | 1:M 29 May 2024 10:22:42.861 * Background saving started by pid 22
redis             | 22:C 29 May 2024 10:22:42.863 * DB saved on disk
redis             | 22:C 29 May 2024 10:22:42.863 * RDB: 0 MB of memory used by copy-on-write
redis             | 1:M 29 May 2024 10:22:42.962 * Background saving terminated with success
redis             | 1:M 29 May 2024 10:29:04.266 * 100 changes in 300 seconds. Saving...
redis             | 1:M 29 May 2024 10:29:04.267 * Background saving started by pid 23
redis             | 23:C 29 May 2024 10:29:05.449 * DB saved on disk
redis             | 23:C 29 May 2024 10:29:05.449 * RDB: 2 MB of memory used by copy-on-write
redis             | 1:M 29 May 2024 10:29:05.470 * Background saving terminated with success
redis             | 1:M 29 May 2024 10:34:12.881 * 100 changes in 300 seconds. Saving...
redis             | 1:M 29 May 2024 10:34:12.881 * Background saving started by pid 24
redis             | 24:C 29 May 2024 10:34:12.882 * DB saved on disk
redis             | 24:C 29 May 2024 10:34:12.883 * RDB: 0 MB of memory used by copy-on-write
redis             | 1:M 29 May 2024 10:34:12.981 * Background saving terminated with success
redis             | 1:M 29 May 2024 10:39:31.411 * 100 changes in 300 seconds. Saving...
redis             | 1:M 29 May 2024 10:39:31.411 * Background saving started by pid 25
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [ApiService] Feature Flags: {
postgres          | waiting for server to start....2024-05-29 10:12:03.556 UTC [48] LOG:  redirecting log output to logging collector process
postgres          | 2024-05-29 10:12:03.556 UTC [48] HINT:  Future log output will appear in directory "log".
postgres          |  done
redis             | 25:C 29 May 2024 10:39:31.414 * DB saved on disk
postgres          | server started
postgres          | CREATE DATABASE
redis             | 25:C 29 May 2024 10:39:31.414 * RDB: 0 MB of memory used by copy-on-write
postgres          |
redis             | 1:M 29 May 2024 10:39:31.512 * Background saving terminated with success
redis             | 1:M 29 May 2024 10:44:32.014 * 100 changes in 300 seconds. Saving...
redis             | 1:M 29 May 2024 10:44:32.015 * Background saving started by pid 26
redis             | 26:C 29 May 2024 10:44:32.017 * DB saved on disk
server            |   "smartSearch": true,
redis             | 26:C 29 May 2024 10:44:32.017 * RDB: 0 MB of memory used by copy-on-write
redis             | 1:M 29 May 2024 10:44:32.115 * Background saving terminated with success
redis             | 1:M 29 May 2024 10:48:11.532 * 10000 changes in 60 seconds. Saving...
redis             | 1:M 29 May 2024 10:48:11.535 * Background saving started by pid 27
redis             | 27:C 29 May 2024 10:48:11.539 * DB saved on disk
redis             | 27:C 29 May 2024 10:48:11.540 * RDB: 1 MB of memory used by copy-on-write
redis             | 1:M 29 May 2024 10:48:11.635 * Background saving terminated with success
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [MetadataRepository] Initializing metadata repository
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [MetadataService] Initialized local reverse geocoder
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [NestFactory] Starting Nest application...
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [InstanceLoader] BullModule dependencies initialized
redis             | 1:M 29 May 2024 10:51:14.071 * 10000 changes in 60 seconds. Saving...
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [InstanceLoader] OpenTelemetryModule dependencies initialized
server            |   "facialRecognition": true,
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [InstanceLoader] TypeOrmModule dependencies initialized
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [InstanceLoader] OpenTelemetryCoreModule dependencies initialized
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [InstanceLoader] ConfigHostModule dependencies initialized
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [InstanceLoader] DiscoveryModule dependencies initialized
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [InstanceLoader] ClsModule dependencies initialized
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [InstanceLoader] ConfigModule dependencies initialized
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [InstanceLoader] EventEmitterModule dependencies initialized
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [InstanceLoader] BullModule dependencies initialized
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [InstanceLoader] BullModule dependencies initialized
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [InstanceLoader] TypeOrmCoreModule dependencies initialized
redis             | 1:M 29 May 2024 10:51:14.071 * Background saving started by pid 28
postgres          |
server            |   "map": true,
postgres          | /usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/*
server            |   "reverseGeocoding": true,
server            |   "sidecar": true,
server            |   "search": true,
server            |   "trash": true,
server            |   "oauth": false,
server            |   "oauthAutoLaunch": false,
server            |   "passwordLogin": true,
server            |   "configFile": false,
server            |   "email": false
server            | }
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [NestFactory] Starting Nest application...
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [InstanceLoader] BullModule dependencies initialized
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [InstanceLoader] OpenTelemetryModule dependencies initialized
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [InstanceLoader] TypeOrmModule dependencies initialized
redis             | 28:C 29 May 2024 10:51:14.076 * DB saved on disk
redis             | 28:C 29 May 2024 10:51:14.076 * RDB: 0 MB of memory used by copy-on-write
redis             | 1:M 29 May 2024 10:51:14.172 * Background saving terminated with success
redis             | 1:M 29 May 2024 10:52:23.420 * 10000 changes in 60 seconds. Saving...
redis             | 1:M 29 May 2024 10:52:23.421 * Background saving started by pid 29
redis             | 29:C 29 May 2024 10:52:23.429 * DB saved on disk
redis             | 29:C 29 May 2024 10:52:23.429 * RDB: 0 MB of memory used by copy-on-write
redis             | 1:M 29 May 2024 10:52:23.522 * Background saving terminated with success
redis             | 1:M 29 May 2024 10:53:24.090 * 10000 changes in 60 seconds. Saving...
redis             | 1:M 29 May 2024 10:53:24.090 * Background saving started by pid 30
redis             | 30:C 29 May 2024 10:53:24.768 * DB saved on disk
redis             | 30:C 29 May 2024 10:53:24.768 * RDB: 2 MB of memory used by copy-on-write
redis             | 1:M 29 May 2024 10:53:24.795 * Background saving terminated with success
redis             | 1:M 29 May 2024 10:58:25.082 * 100 changes in 300 seconds. Saving...
redis             | 1:M 29 May 2024 10:58:25.083 * Background saving started by pid 31
redis             | 31:C 29 May 2024 10:58:25.093 * DB saved on disk
redis             | 31:C 29 May 2024 10:58:25.094 * RDB: 1 MB of memory used by copy-on-write
redis             | 1:M 29 May 2024 10:58:25.184 * Background saving terminated with success
redis             | 1:M 29 May 2024 10:59:26.100 * 10000 changes in 60 seconds. Saving...
redis             | 1:M 29 May 2024 10:59:26.101 * Background saving started by pid 32
redis             | 32:C 29 May 2024 10:59:26.122 * DB saved on disk
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [InstanceLoader] OpenTelemetryCoreModule dependencies initialized
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [InstanceLoader] ConfigHostModule dependencies initialized
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [InstanceLoader] DiscoveryModule dependencies initialized
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [InstanceLoader] ClsModule dependencies initialized
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [InstanceLoader] ConfigModule dependencies initialized
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [InstanceLoader] EventEmitterModule dependencies initialized
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [InstanceLoader] ScheduleModule dependencies initialized
redis             | 32:C 29 May 2024 10:59:26.122 * RDB: 1 MB of memory used by copy-on-write
redis             | 1:M 29 May 2024 10:59:26.202 * Background saving terminated with success
redis             | 1:M 29 May 2024 11:00:27.080 * 10000 changes in 60 seconds. Saving...
redis             | 1:M 29 May 2024 11:00:27.081 * Background saving started by pid 33
postgres          |
postgres          | waiting for server to shut down.... done
postgres          | server stopped
postgres          |
postgres          | PostgreSQL init process complete; ready for start up.
postgres          |
redis             | 33:C 29 May 2024 11:00:27.103 * DB saved on disk
postgres          | 2024-05-29 10:12:04.000 UTC [1] LOG:  redirecting log output to logging collector process
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [InstanceLoader] BullModule dependencies initialized
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [InstanceLoader] BullModule dependencies initialized
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [InstanceLoader] TypeOrmCoreModule dependencies initialized
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [InstanceLoader] TypeOrmModule dependencies initialized
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [InstanceLoader] MicroservicesModule dependencies initialized
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [NestApplication] Nest application successfully started
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [InstanceLoader] TypeOrmModule dependencies initialized
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [InstanceLoader] ApiModule dependencies initialized
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] APIKeyController {/api/api-key}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/api-key, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/api-key, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/api-key/:id, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/api-key/:id, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/api-key/:id, DELETE} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] ActivityController {/api/activity}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/activity, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/activity/statistics, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/activity, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/activity/:id, DELETE} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] AlbumController {/api/album}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/album/count, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/album, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/album, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/album/:id, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/album/:id, PATCH} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/album/:id, DELETE} route
redis             | 33:C 29 May 2024 11:00:27.103 * RDB: 1 MB of memory used by copy-on-write
redis             | 1:M 29 May 2024 11:00:27.181 * Background saving terminated with success
redis             | 1:M 29 May 2024 11:01:28.067 * 10000 changes in 60 seconds. Saving...
redis             | 1:M 29 May 2024 11:01:28.067 * Background saving started by pid 34
redis             | 34:C 29 May 2024 11:01:28.113 * DB saved on disk
redis             | 34:C 29 May 2024 11:01:28.114 * RDB: 2 MB of memory used by copy-on-write
redis             | 1:M 29 May 2024 11:01:28.168 * Background saving terminated with success
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [ImmichMicroservices] Immich Microservices is listening on http://[::1]:3002 [v1.105.1] [PRODUCTION]
microservices     | [Nest] 7  - 05/29/2024, 11:02:45 AM     LOG [ImmichMicroservices] [MediaService] Started encoding video 70c0cd92-a011-488e-9f41-1dd761d15553 {"inputOptions":[],"outputOptions":["-c:v h264","-c:a copy","-movflags faststart","-fps_mode passthrough","-map 0:0","-v verbose","-vf scale=720:-2,format=yuv420p","-preset ultrafast","-crf 23"],"twoPass":false}
microservices     | [Nest] 7  - 05/29/2024, 11:02:46 AM     LOG [ImmichMicroservices] [MediaService] Successfully encoded 70c0cd92-a011-488e-9f41-1dd761d15553
microservices     | [Nest] 7  - 05/29/2024, 11:02:46 AM     LOG [ImmichMicroservices] [MediaService] Started encoding video be0d1747-1f3c-4b5b-8b46-b769a396b19e {"inputOptions":[],"outputOptions":["-c:v h264","-c:a copy","-movflags faststart","-fps_mode passthrough","-map 0:0","-v verbose","-vf scale=720:-2,format=yuv420p","-preset ultrafast","-crf 23"],"twoPass":false}
microservices     | [Nest] 7  - 05/29/2024, 11:02:47 AM     LOG [ImmichMicroservices] [MediaService] Successfully encoded be0d1747-1f3c-4b5b-8b46-b769a396b19e
microservices     | [Nest] 7  - 05/29/2024, 11:02:47 AM     LOG [ImmichMicroservices] [MediaService] Started encoding video f04a1107-cb9e-492b-aa73-97f442cb3c0c {"inputOptions":[],"outputOptions":["-c:v h264","-c:a copy","-movflags faststart","-fps_mode passthrough","-map 0:0","-v verbose","-vf scale=720:-2,format=yuv420p","-preset ultrafast","-crf 23"],"twoPass":false}
microservices     | [Nest] 7  - 05/29/2024, 11:02:48 AM     LOG [ImmichMicroservices] [MediaService] Successfully encoded f04a1107-cb9e-492b-aa73-97f442cb3c0c
microservices     | [Nest] 7  - 05/29/2024, 11:02:48 AM     LOG [ImmichMicroservices] [MediaService] Started encoding video d218917e-65d4-4167-b324-846a40c0b678 {"inputOptions":[],"outputOptions":["-c:v h264","-c:a copy","-movflags faststart","-fps_mode passthrough","-map 0:0","-v verbose","-vf scale=720:-2,format=yuv420p","-preset ultrafast","-crf 23"],"twoPass":false}
microservices     | [Nest] 7  - 05/29/2024, 11:02:48 AM     LOG [ImmichMicroservices] [MediaService] Successfully encoded d218917e-65d4-4167-b324-846a40c0b678
microservices     | [Nest] 7  - 05/29/2024, 11:02:48 AM     LOG [ImmichMicroservices] [MediaService] Started encoding video 23f88654-a054-42a0-91e6-0f0294f0f369 {"inputOptions":[],"outputOptions":["-c:v h264","-c:a copy","-movflags faststart","-fps_mode passthrough","-map 0:0","-map 0:1","-v verbose","-vf scale=720:-2,format=yuv420p","-preset ultrafast","-crf 23"],"twoPass":false}
microservices     | [Nest] 7  - 05/29/2024, 11:02:57 AM     LOG [ImmichMicroservices] [MediaService] Successfully encoded 23f88654-a054-42a0-91e6-0f0294f0f369
microservices     | [Nest] 7  - 05/29/2024, 11:02:57 AM     LOG [ImmichMicroservices] [MediaService] Started encoding video 5aa9e8bd-fc8d-48cb-89cd-6ccf2b5c19fb {"inputOptions":[],"outputOptions":["-c:v h264","-c:a copy","-movflags faststart","-fps_mode passthrough","-map 0:0","-map 0:1","-v verbose","-vf scale=720:-2,format=yuv420p","-preset ultrafast","-crf 23"],"twoPass":false}
microservices     | [Nest] 7  - 05/29/2024, 11:02:59 AM     LOG [ImmichMicroservices] [MediaService] Successfully encoded 5aa9e8bd-fc8d-48cb-89cd-6ccf2b5c19fb
microservices     | [Nest] 7  - 05/29/2024, 11:02:59 AM     LOG [ImmichMicroservices] [MediaService] Started encoding video c4f378af-a895-4535-95e3-738c83733e5a {"inputOptions":[],"outputOptions":["-c:v h264","-c:a copy","-movflags faststart","-fps_mode passthrough","-map 0:0","-map 0:1","-v verbose","-vf scale=720:-2,format=yuv420p","-preset ultrafast","-crf 23"],"twoPass":false}
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/album/:id/assets, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/album/:id/assets, DELETE} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/album/:id/users, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/album/:id/user/:userId, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/album/:id/user/:userId, DELETE} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] AppController {/api}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/.well-known/immich, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/custom.css, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] AssetController {/api/asset}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/asset/map-marker, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/asset/memory-lane, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/asset/random, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/asset/device/:deviceId, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/asset/statistics, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/asset/jobs, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/asset, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/asset, DELETE} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/asset/stack/parent, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/asset/:id, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/asset/:id, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] AssetControllerV1 {/api/asset}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/asset/upload, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/asset/file/:id, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/asset/thumbnail/:id, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/asset, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/asset/exist, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/asset/bulk-upload-check, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] AuditController {/api/audit}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/audit/deletes, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] AuthController {/api/auth}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/auth/login, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/auth/admin-sign-up, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/auth/validateToken, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/auth/change-password, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/auth/logout, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] DownloadController {/api/download}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/download/info, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/download/archive, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/download/asset/:id, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] FaceController {/api/face}:
postgres          | 2024-05-29 10:12:04.000 UTC [1] HINT:  Future log output will appear in directory "log".
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/face, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/face/:id, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] JobController {/api/jobs}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/jobs, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/jobs/:id, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] LibraryController {/api/library}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/library, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/library, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/library/:id, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/library/:id, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/library/:id/validate, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/library/:id, DELETE} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/library/:id/statistics, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/library/:id/scan, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/library/:id/removeOffline, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] MemoryController {/api/memories}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/memories, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/memories, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/memories/:id, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/memories/:id, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/memories/:id, DELETE} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/memories/:id/assets, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/memories/:id/assets, DELETE} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] OAuthController {/api/oauth}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/oauth/mobile-redirect, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/oauth/authorize, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/oauth/callback, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/oauth/link, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/oauth/unlink, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] PartnerController {/api/partner}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/partner, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/partner/:id, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/partner/:id, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/partner/:id, DELETE} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] PersonController {/api/person}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/person, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/person, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/person, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/person/:id, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/person/:id, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/person/:id/statistics, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/person/:id/thumbnail, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/person/:id/assets, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/person/:id/reassign, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/person/:id/merge, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] ReportController {/api/report}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/report, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/report/checksum, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/report/fix, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] SearchController {/api/search}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/search/metadata, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/search/smart, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/search/explore, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/search/person, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/search/places, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/search/cities, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/search/suggestions, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] ServerInfoController {/api/server-info}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/server-info, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/server-info/ping, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/server-info/version, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/server-info/features, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/server-info/theme, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/server-info/config, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/server-info/statistics, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/server-info/media-types, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] SessionController {/api/sessions}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/sessions, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/sessions, DELETE} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/sessions/:id, DELETE} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] SharedLinkController {/api/shared-link}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/shared-link, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/shared-link/me, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/shared-link/:id, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/shared-link, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/shared-link/:id, PATCH} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/shared-link/:id, DELETE} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/shared-link/:id/assets, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/shared-link/:id/assets, DELETE} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] SyncController {/api/sync}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/sync/full-sync, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/sync/delta-sync, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] SystemConfigController {/api/system-config}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/system-config, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/system-config/defaults, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/system-config, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/system-config/storage-template-options, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/system-config/map/style.json, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] SystemMetadataController {/api/system-metadata}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/system-metadata/admin-onboarding, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/system-metadata/admin-onboarding, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/system-metadata/reverse-geocoding-state, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] TagController {/api/tag}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/tag, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/tag, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/tag/:id, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/tag/:id, PATCH} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/tag/:id, DELETE} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/tag/:id/assets, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/tag/:id/assets, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/tag/:id/assets, DELETE} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] TimelineController {/api/timeline}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/timeline/buckets, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/timeline/bucket, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] TrashController {/api/trash}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/trash/empty, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/trash/restore, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/trash/restore/assets, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RoutesResolver] UserController {/api/user}:
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/user, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/user/info/:id, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/user/me, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/user, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/user/profile-image, DELETE} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/user/:id, DELETE} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/user/:id/restore, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/user, PUT} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/user/profile-image, POST} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [RouterExplorer] Mapped {/api/user/profile-image/:id, GET} route
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [NestApplication] Nest application successfully started
server            | [Nest] 7  - 05/29/2024, 11:02:42 AM     LOG [ImmichServer] [ImmichServer] Immich Server is listening on http://[::1]:3001 [v1.105.1] [PRODUCTION]
server            | [Nest] 7  - 05/29/2024, 11:02:43 AM     LOG [ImmichServer] [EventRepository] Websocket Connect:    _n5zRdnuCHhqmgdcAAAB

Additional information

I am accessing immich by pointing duckDNS at the IP address of my server, configuring caddy to listen for request from duckDNS, and then caddy reverse proxies the request to the immich port. Caddy is also configured with my duckDNS api key so that it can configure signed SSL certificates using the DNS 01 challange.

bo0tzz commented 6 months ago

Please post the logs of all the containers. Can you also try direct access without any proxies or port forwards, and can you try whether uploading from the web client works?

godalming123 commented 6 months ago

I have just noticed that when I try to search, I get an message saying that their was an internal server error (even if I access immich without proxies and port forwards). Search also doesn't work on mobile even if I don' use port forwarding, and neither does explore.

Please post the logs of all the containers.

I do not know how to do this.

Can you also try direct access without any proxies or port forwards?

No luck either.

Can you try whether uploading from the web client works?

The web client (like all of the clients) can upload the photos, but does not automatically start any jobs.

I think that the reason that it isn't working might be because I had an instance running on the same server, and did not properly delete all of the data from the old container, so their is still some left over, and some that is completely new.