RasPi 4B: No location for photo with geo coordinates #4931

Closed
opened 2026-02-20 03:12:12 -05:00 by deekerman · 7 comments
Owner

Originally created by @kho-git on GitHub (Feb 16, 2025).

The bug

On a RasPi 4B with 8GB, no location is displayed for any photo, although geo-coordinates are available and the location marker is also set at the correct position on the map.

The OS that Immich Server is running on

Linux rpimmich 6.6.74+rpt-rpi-v8 #1 SMP PREEMPT Debian 1:6.6.74-1+rpt1 (2025-01-27) aarch64

Version of Immich Server

v1.126.1

Version of Immich Mobile App

n/a

Platform with the issue

  • Server
  • Web
  • Mobile

Your docker-compose.yml content

#
# WARNING: 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
    env_file:
      - stack.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, openvino] 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, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable
    volumes:
      - model-cache:/cache
    env_file:
      - stack.env
    restart: always
    healthcheck:
      disable: false

  redis:
    container_name: immich_redis
    image: docker.io/redis:6.2-alpine@sha256:e3b17ba9479deec4b7d1eeec1548a253acc5374d68d3b27937fcfe4df8d18c7e
    healthcheck:
      test: redis-cli ping || exit 1
    restart: always
    
  pgadmin:
    image: dpage/pgadmin4
    container_name: pgadmin4_container
    restart: always
    ports:
      - "8888:80"
    environment:
      PGADMIN_DEFAULT_EMAIL: ${PGA_USERNAME}
      PGADMIN_DEFAULT_PASSWORD: ${PGA_PWD}
    volumes:
      - pgadmin-data:/var/lib/pgadmin


  database:
    container_name: immich_postgres
    image: docker.io/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:
      # 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='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' || exit 1; Chksum="$$(psql --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' --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:
  pgadmin-data:

Your .env content

UPLOAD_LOCATION=./library
DB_DATA_LOCATION=./postgres
IMMICH_VERSION=release
DB_PASSWORD=***
DB_USERNAME=postgres
DB_DATABASE_NAME=immich
PGA_USERNAME=***
PGA_PWD=***
TZ=Europe/Berlin

Reproduction steps

  1. Go to single photo view

...

Relevant log output


Additional information

see attaches screen shots:
UBUNTU is OK
RASPI: Error, no location

Image
Image

Originally created by @kho-git on GitHub (Feb 16, 2025). ### The bug On a RasPi 4B with 8GB, no location is displayed for any photo, although geo-coordinates are available and the location marker is also set at the correct position on the map. ### The OS that Immich Server is running on Linux rpimmich 6.6.74+rpt-rpi-v8 #1 SMP PREEMPT Debian 1:6.6.74-1+rpt1 (2025-01-27) aarch64 ### Version of Immich Server v1.126.1 ### Version of Immich Mobile App n/a ### Platform with the issue - [ ] Server - [x] Web - [ ] Mobile ### Your docker-compose.yml content ```YAML # # WARNING: 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 env_file: - stack.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, openvino] 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, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable volumes: - model-cache:/cache env_file: - stack.env restart: always healthcheck: disable: false redis: container_name: immich_redis image: docker.io/redis:6.2-alpine@sha256:e3b17ba9479deec4b7d1eeec1548a253acc5374d68d3b27937fcfe4df8d18c7e healthcheck: test: redis-cli ping || exit 1 restart: always pgadmin: image: dpage/pgadmin4 container_name: pgadmin4_container restart: always ports: - "8888:80" environment: PGADMIN_DEFAULT_EMAIL: ${PGA_USERNAME} PGADMIN_DEFAULT_PASSWORD: ${PGA_PWD} volumes: - pgadmin-data:/var/lib/pgadmin database: container_name: immich_postgres image: docker.io/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: # 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='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' || exit 1; Chksum="$$(psql --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' --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: pgadmin-data: ``` ### Your .env content ```Shell UPLOAD_LOCATION=./library DB_DATA_LOCATION=./postgres IMMICH_VERSION=release DB_PASSWORD=*** DB_USERNAME=postgres DB_DATABASE_NAME=immich PGA_USERNAME=*** PGA_PWD=*** TZ=Europe/Berlin ``` ### Reproduction steps 1. Go to single photo view 2. 3. ... ### Relevant log output ```shell ``` ### Additional information see attaches screen shots: UBUNTU is OK RASPI: Error, no location ![Image](https://github.com/user-attachments/assets/9e49a016-feda-4006-9522-9bd5c1ea64cf) ![Image](https://github.com/user-attachments/assets/83d03dce-7f65-4b0a-ae08-851da6754240)
Author
Owner

@bo0tzz commented on GitHub (Feb 16, 2025):

Please set the log level to verbose, run metadata extraction on one of these assets, and then post the complete log from immich_server.

@bo0tzz commented on GitHub (Feb 16, 2025): Please set the log level to verbose, run metadata extraction on one of these assets, and then post the complete log from immich_server.
Author
Owner

@kho-git commented on GitHub (Feb 16, 2025):

Hi bo0tzz,
here is the server log. Without any geo coordinates...

CreateDate: ExifDateTime {
year: 1980,
month: 8,
day: 9,
hour: 10,
minute: 45,
second: 0,
millisecond: undefined,
tzoffsetMinutes: -240,
rawValue: '1980:08:09 10:45:00',
zoneName: 'America/Toronto',
inferredZone: true,
zone: 'America/Toronto'
},
Creator: '***',
DateTimeOriginal: ExifDateTime {
year: 1980,
month: 8,
day: 9,
hour: 10,
minute: 45,
second: 0,
millisecond: undefined,
tzoffsetMinutes: -240,
rawValue: '1980:08:09 10:45:00',
zoneName: 'America/Toronto',
inferredZone: true,
zone: 'America/Toronto'
},
Description: 'Blick flußabwärts',
Keywords: [
'#Farbdominanz',
'America',
'Amerika',
'Blau',
'Gewässer',
'Hell',
'Hellblau',
'Kanada',
'Natur',
'Niagara Falls Central',
'Ontario',
'Ozean',
'USA'
],
Location: 'Niagara Falls',
ModifyDate: ExifDateTime {
year: 2025,
month: 1,
day: 3,
hour: 16,
minute: 10,
second: 25,
millisecond: undefined,
tzoffsetMinutes: -300,
rawValue: '2025:01:03 16:10:25',
zoneName: 'America/Toronto',
inferredZone: true,
zone: 'America/Toronto'
},
State: 'Ontario',
warnings: []
}
[Nest] 7 - 02/16/2025, 10:14:21 PM VERBOSE [Microservices:MetadataService] Asset 50be92e0-0748-470e-83b5-003a3aa923e0 date time is 1980-08-09T10:45:00-04:00
[Nest] 7 - 02/16/2025, 10:14:21 PM VERBOSE [Microservices:MetadataService] Asset 50be92e0-0748-470e-83b5-003a3aa923e0 timezone is America/Toronto (via GPSLatitude/GPSLongitude)
[Nest] 7 - 02/16/2025, 10:14:21 PM VERBOSE [Microservices:MetadataService] Asset 50be92e0-0748-470e-83b5-003a3aa923e0 has a local time of 1980-08-09T10:45:00.000Z
[Nest] 17 - 02/16/2025, 10:14:21 PM DEBUG [Api:LoggingInterceptor6kwwn6zd] GET /api/server/ping 200 0.47ms ::ffff:127.0.0.1
[Nest] 17 - 02/16/2025, 10:14:51 PM DEBUG [Api:LoggingInterceptor
y4860swu] GET /api/server/ping 200 0.46ms ::ffff:127.0.0.1
[Nest] 17 - 02/16/2025, 10:15:21 PM DEBUG [Api:LoggingInterceptor3oqdxijx] GET /api/server/ping 200 0.45ms ::ffff:127.0.0.1
[Nest] 17 - 02/16/2025, 10:15:34 PM DEBUG [Api:LoggingInterceptor
mp7rdcbb] GET /api/albums/82c803e3-8eee-4a72-a09b-f95c91bb4507?withoutAssets=true 200 22.07ms ::ffff:192.168.178.100
[Nest] 17 - 02/16/2025, 10:15:37 PM DEBUG [Api:LoggingInterceptorfuulcqhp] GET /api/albums?shared=true 200 25.71ms ::ffff:192.168.178.100
[Nest] 17 - 02/16/2025, 10:15:37 PM DEBUG [Api:LoggingInterceptor
9dyhd6b4] GET /api/albums 200 56.79ms ::ffff:192.168.178.100
[Nest] 17 - 02/16/2025, 10:15:41 PM DEBUG [Api:LoggingInterceptorgleamhme] GET /api/server/storage 200 0.92ms ::ffff:192.168.178.100
[Nest] 17 - 02/16/2025, 10:15:41 PM DEBUG [Api:LoggingInterceptor
zabck8e9] GET /api/admin/users?withDeleted=true 200 3.80ms ::ffff:192.168.178.100
[Nest] 17 - 02/16/2025, 10:15:42 PM DEBUG [Api:LoggingInterceptor3qi5ro5f] GET /api/jobs 200 32.13ms ::ffff:192.168.178.100
[Nest] 17 - 02/16/2025, 10:15:45 PM DEBUG [Api:LoggingInterceptor
8scexj2s] GET /api/system-config 200 18.39ms ::ffff:192.168.178.100
[Nest] 17 - 02/16/2025, 10:15:45 PM DEBUG [Api:LoggingInterceptormi4jtkb1] GET /api/system-config/defaults 200 0.46ms ::ffff:192.168.178.100
[Nest] 17 - 02/16/2025, 10:15:45 PM DEBUG [Api:LoggingInterceptor
p63n4dbe] GET /api/system-config 200 12.31ms ::ffff:192.168.178.100
[Nest] 17 - 02/16/2025, 10:15:51 PM DEBUG [Api:LoggingInterceptorxg3g7xyk] GET /api/server/ping 200 0.44ms ::ffff:127.0.0.1
[Nest] 17 - 02/16/2025, 10:15:51 PM DEBUG [Api:EventRepository
jzsqbfpl] Server event: config.update (send)
[Nest] 17 - 02/16/2025, 10:15:51 PM LOG [Api:SystemConfigService~jzsqbfpl] LogLevel=log (set via system config)
[Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:EventRepository] Server event: config.update (receive)
[Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Updating queue concurrency settings
[Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting thumbnailGeneration concurrency to 2
[Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting metadataExtraction concurrency to 5
[Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting videoConversion concurrency to 1
[Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting faceDetection concurrency to 2
[Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting facialRecognition concurrency to 1
[Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting smartSearch concurrency to 1
[Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting duplicateDetection concurrency to 1
[Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting backgroundTask concurrency to 5
[Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting storageTemplateMigration concurrency to 1
[Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting migration concurrency to 5
[Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting search concurrency to 5
[Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting sidecar concurrency to 5
[Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting library concurrency to 5
[Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting notifications concurrency to 5
[Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting backupDatabase concurrency to 1
[Nest] 7 - 02/16/2025, 10:15:52 PM VERBOSE [Microservices:SmartInfoService] Current database CLIP dimension size is 640
[Nest] 7 - 02/16/2025, 10:15:52 PM LOG [Microservices:SystemConfigService] LogLevel=log (set via system config)

@kho-git commented on GitHub (Feb 16, 2025): Hi bo0tzz, here is the server log. Without any geo coordinates... CreateDate: ExifDateTime { year: 1980, month: 8, day: 9, hour: 10, minute: 45, second: 0, millisecond: undefined, tzoffsetMinutes: -240, rawValue: '1980:08:09 10:45:00', zoneName: 'America/Toronto', inferredZone: true, zone: 'America/Toronto' }, Creator: '***', DateTimeOriginal: ExifDateTime { year: 1980, month: 8, day: 9, hour: 10, minute: 45, second: 0, millisecond: undefined, tzoffsetMinutes: -240, rawValue: '1980:08:09 10:45:00', zoneName: 'America/Toronto', inferredZone: true, zone: 'America/Toronto' }, Description: 'Blick flußabwärts', Keywords: [ '#Farbdominanz', 'America', 'Amerika', 'Blau', 'Gewässer', 'Hell', 'Hellblau', 'Kanada', 'Natur', 'Niagara Falls Central', 'Ontario', 'Ozean', 'USA' ], Location: 'Niagara Falls', ModifyDate: ExifDateTime { year: 2025, month: 1, day: 3, hour: 16, minute: 10, second: 25, millisecond: undefined, tzoffsetMinutes: -300, rawValue: '2025:01:03 16:10:25', zoneName: 'America/Toronto', inferredZone: true, zone: 'America/Toronto' }, State: 'Ontario', warnings: [] } [Nest] 7 - 02/16/2025, 10:14:21 PM VERBOSE [Microservices:MetadataService] Asset 50be92e0-0748-470e-83b5-003a3aa923e0 date time is 1980-08-09T10:45:00-04:00 [Nest] 7 - 02/16/2025, 10:14:21 PM VERBOSE [Microservices:MetadataService] Asset 50be92e0-0748-470e-83b5-003a3aa923e0 timezone is America/Toronto (via GPSLatitude/GPSLongitude) [Nest] 7 - 02/16/2025, 10:14:21 PM VERBOSE [Microservices:MetadataService] Asset 50be92e0-0748-470e-83b5-003a3aa923e0 has a local time of 1980-08-09T10:45:00.000Z [Nest] 17 - 02/16/2025, 10:14:21 PM DEBUG [Api:LoggingInterceptor~6kwwn6zd] GET /api/server/ping 200 0.47ms ::ffff:127.0.0.1 [Nest] 17 - 02/16/2025, 10:14:51 PM DEBUG [Api:LoggingInterceptor~y4860swu] GET /api/server/ping 200 0.46ms ::ffff:127.0.0.1 [Nest] 17 - 02/16/2025, 10:15:21 PM DEBUG [Api:LoggingInterceptor~3oqdxijx] GET /api/server/ping 200 0.45ms ::ffff:127.0.0.1 [Nest] 17 - 02/16/2025, 10:15:34 PM DEBUG [Api:LoggingInterceptor~mp7rdcbb] GET /api/albums/82c803e3-8eee-4a72-a09b-f95c91bb4507?withoutAssets=true 200 22.07ms ::ffff:192.168.178.100 [Nest] 17 - 02/16/2025, 10:15:37 PM DEBUG [Api:LoggingInterceptor~fuulcqhp] GET /api/albums?shared=true 200 25.71ms ::ffff:192.168.178.100 [Nest] 17 - 02/16/2025, 10:15:37 PM DEBUG [Api:LoggingInterceptor~9dyhd6b4] GET /api/albums 200 56.79ms ::ffff:192.168.178.100 [Nest] 17 - 02/16/2025, 10:15:41 PM DEBUG [Api:LoggingInterceptor~gleamhme] GET /api/server/storage 200 0.92ms ::ffff:192.168.178.100 [Nest] 17 - 02/16/2025, 10:15:41 PM DEBUG [Api:LoggingInterceptor~zabck8e9] GET /api/admin/users?withDeleted=true 200 3.80ms ::ffff:192.168.178.100 [Nest] 17 - 02/16/2025, 10:15:42 PM DEBUG [Api:LoggingInterceptor~3qi5ro5f] GET /api/jobs 200 32.13ms ::ffff:192.168.178.100 [Nest] 17 - 02/16/2025, 10:15:45 PM DEBUG [Api:LoggingInterceptor~8scexj2s] GET /api/system-config 200 18.39ms ::ffff:192.168.178.100 [Nest] 17 - 02/16/2025, 10:15:45 PM DEBUG [Api:LoggingInterceptor~mi4jtkb1] GET /api/system-config/defaults 200 0.46ms ::ffff:192.168.178.100 [Nest] 17 - 02/16/2025, 10:15:45 PM DEBUG [Api:LoggingInterceptor~p63n4dbe] GET /api/system-config 200 12.31ms ::ffff:192.168.178.100 [Nest] 17 - 02/16/2025, 10:15:51 PM DEBUG [Api:LoggingInterceptor~xg3g7xyk] GET /api/server/ping 200 0.44ms ::ffff:127.0.0.1 [Nest] 17 - 02/16/2025, 10:15:51 PM DEBUG [Api:EventRepository~jzsqbfpl] Server event: config.update (send) [Nest] 17 - 02/16/2025, 10:15:51 PM LOG [Api:SystemConfigService~jzsqbfpl] LogLevel=log (set via system config) [Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:EventRepository] Server event: config.update (receive) [Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Updating queue concurrency settings [Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting thumbnailGeneration concurrency to 2 [Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting metadataExtraction concurrency to 5 [Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting videoConversion concurrency to 1 [Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting faceDetection concurrency to 2 [Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting facialRecognition concurrency to 1 [Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting smartSearch concurrency to 1 [Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting duplicateDetection concurrency to 1 [Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting backgroundTask concurrency to 5 [Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting storageTemplateMigration concurrency to 1 [Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting migration concurrency to 5 [Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting search concurrency to 5 [Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting sidecar concurrency to 5 [Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting library concurrency to 5 [Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting notifications concurrency to 5 [Nest] 7 - 02/16/2025, 10:15:51 PM DEBUG [Microservices:JobService] Setting backupDatabase concurrency to 1 [Nest] 7 - 02/16/2025, 10:15:52 PM VERBOSE [Microservices:SmartInfoService] Current database CLIP dimension size is 640 [Nest] 7 - 02/16/2025, 10:15:52 PM LOG [Microservices:SystemConfigService] LogLevel=log (set via system config)
Author
Owner

@bo0tzz commented on GitHub (Feb 16, 2025):

That's not the full log. I meant everything from the server starting onwards

@bo0tzz commented on GitHub (Feb 16, 2025): That's not the full log. I meant everything from the server starting onwards
Author
Owner

@kho-git commented on GitHub (Feb 17, 2025):

Hi bo0tzz,
I hope this one (iserver.log) is the complete one.
I extract it with "docker logs -n all immich_server > iserver.log" and get it with "scp" from the raspi.

iserver.log

@kho-git commented on GitHub (Feb 17, 2025): Hi bo0tzz, I hope this one (iserver.log) is the complete one. I extract it with "docker logs -n all immich_server > iserver.log" and get it with "scp" from the raspi. [iserver.log](https://github.com/user-attachments/files/18821649/iserver.log)
Author
Owner

@bo0tzz commented on GitHub (Feb 17, 2025):

I think you have reverse geocoding disabled. Can you share a screenshot of the settings at https://my.immich.app/admin/system-settings?isOpen=location+reverse-geocoding ?

@bo0tzz commented on GitHub (Feb 17, 2025): I think you have reverse geocoding disabled. Can you share a screenshot of the settings at https://my.immich.app/admin/system-settings?isOpen=location+reverse-geocoding ?
Author
Owner

@kho-git commented on GitHub (Feb 17, 2025):

Hi bo0tzz,,
you are right, reverse geocoding was disabled, For whatever reason... see screenshot (in German). Thanks for pointing this out!!

Image

After manual metadata extraction on a single photo, the correct location is then also displayed.
.
Probably I have to start the batch job “EXTRACT METADATA” for all photos now?

@kho-git commented on GitHub (Feb 17, 2025): Hi bo0tzz,, you are right, reverse geocoding was disabled, For whatever reason... see screenshot (in German). **Thanks for pointing this out!!** ![Image](https://github.com/user-attachments/assets/159e5944-4dbc-4605-897b-7dd1b943840c) After manual metadata extraction on a single photo, the correct location is then also displayed. . Probably I have to start the batch job “EXTRACT METADATA” for all photos now?
Author
Owner

@alextran1502 commented on GitHub (Feb 17, 2025):

Probably I have to start the batch job “EXTRACT METADATA” for all photos now?

Correct

@alextran1502 commented on GitHub (Feb 17, 2025): > Probably I have to start the batch job “EXTRACT METADATA” for all photos now? Correct
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/immich#4931
No description provided.