Jobs page not loading #3148

Closed
opened 2026-02-05 07:53:32 +03:00 by OVERLORD · 0 comments
Owner

Originally created by @Hixxey on GitHub (May 16, 2024).

The bug

The job page no longer loads and I'm getting an error relating to getaddrinfo EAI_AGAIN redis in the Immich and Immich Microservices container logs.

The OS that Immich Server is running on

Ubuntu 22.04

Version of Immich Server

v1.105.1

Version of Immich Mobile App

v1.105.0

Platform with the issue

  • Server
  • Web
  • Mobile

Your docker-compose.yml content

immich:
    container_name: immich
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    command: [ "start.sh", "immich" ]
    volumes:
      - ./immich/library:/usr/src/app/upload/library
      - ./immich/cache/upload:/usr/src/app/upload/upload
      - ./immich/cache/thumbs:/usr/src/app/upload/thumbs
      - ./immich/cache/profile:/usr/src/app/upload/profile
      - ./immich/cache/encoded-video:/usr/src/app/upload/encoded-video
      - /etc/localtime:/etc/localtime:ro
      - ${HOMEDATA}/Pictures:/photos:ro
    env_file:
      - .env
    ports:
      - 2283:3001
    environment:
      DB_USERNAME: ${ADMIN_USER}
      DB_PASSWORD: ${ADMIN_PASSWORD}
      DB_DATABASE_NAME: immich
      DB_HOSTNAME: immich_postgres
      TZ: ${TIMEZONE}
    depends_on:
      - immich_redis
      - immich_postgres
    restart: always
  
  immich_microservices:
    container_name: immich_microservices
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    command: [ "start.sh", "microservices" ]
    env_file:
      - .env
    environment:
      DB_USERNAME: ${ADMIN_USER}
      DB_PASSWORD: ${ADMIN_PASSWORD}
      DB_DATABASE_NAME: immich
      DB_HOSTNAME: immich_postgres
      TZ: ${TIMEZONE}
    volumes:
      - ./immich/library:/usr/src/app/upload/library
      - ./immich/cache/upload:/usr/src/app/upload/upload
      - ./immich/cache/thumbs:/usr/src/app/upload/thumbs
      - ./immich/cache/profile:/usr/src/app/upload/profile
      - ./immich/cache/encoded-video:/usr/src/app/upload/encoded-video
      - /etc/localtime:/etc/localtime:ro
      - ${HOMEDATA}/Pictures:/photos:ro
    depends_on:
      - immich_redis
      - immich_postgres
    restart: always
  
  immich-machine-learning:
    container_name: immich_machine_learning
    image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
    volumes:
      - ./immich/library:/usr/src/app/upload/library
      - ./immich/cache/upload:/usr/src/app/upload/upload
      - ./immich/cache/thumbs:/usr/src/app/upload/thumbs
      - ./immich/cache/profile:/usr/src/app/upload/profile
      - ./immich/cache/encoded-video:/usr/src/app/upload/encoded-video
      - ./immich-machine-learning/model-cache:/cache
    restart: always
    environment:
      TZ: ${TIMEZONE}
  
  immich_redis:
    image: registry.hub.docker.com/library/redis:6.2-alpine@sha256:84882e87b54734154586e5f8abd4dce69fe7311315e2fc6d67c29614c8de2672
    container_name: immich_redis
    restart: always
    environment:
      TZ: ${TIMEZONE}
    healthcheck:
      test: ["CMD", "redis-cli", "ping"]
      interval: 10s
      timeout: 5s
      retries: 5
    volumes:
      - ./immich-redis:/data
  
  immich_postgres:
    container_name: immich_postgres
    image: registry.hub.docker.com/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
    environment:
      POSTGRES_PASSWORD: ${ADMIN_PASSWORD}
      POSTGRES_USER: ${ADMIN_USER}
      POSTGRES_DB: immich
      POSTGRES_INITDB_ARGS: '--data-checksums'
    ports:
      - "5432:5432"
    volumes:
      - ./immich-postgres:/var/lib/postgresql/data
    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
    labels:
      autoheal-app: true

Your .env content

IMMICH_VERSION=v1.105.1

Reproduction steps

Upgrade to v1.105.1
Open Immich in a browser
Try to load Jobs page

Relevant log output

Error: getaddrinfo EAI_AGAIN redis
    at GetAddrInfoReqWrap.onlookup [as oncomplete] (node:dns:109:26)
    at GetAddrInfoReqWrap.callbackTrampoline (node:internal/async_hooks:130:17) {
  errno: -3001,
  code: 'EAI_AGAIN',
  syscall: 'getaddrinfo',
  hostname: 'redis'
}

Additional information

I don't get this error in v1.102.3

Originally created by @Hixxey on GitHub (May 16, 2024). ### The bug The job page no longer loads and I'm getting an error relating to getaddrinfo EAI_AGAIN redis in the Immich and Immich Microservices container logs. ### The OS that Immich Server is running on Ubuntu 22.04 ### Version of Immich Server v1.105.1 ### Version of Immich Mobile App v1.105.0 ### Platform with the issue - [ ] Server - [X] Web - [ ] Mobile ### Your docker-compose.yml content ```YAML immich: container_name: immich image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} command: [ "start.sh", "immich" ] volumes: - ./immich/library:/usr/src/app/upload/library - ./immich/cache/upload:/usr/src/app/upload/upload - ./immich/cache/thumbs:/usr/src/app/upload/thumbs - ./immich/cache/profile:/usr/src/app/upload/profile - ./immich/cache/encoded-video:/usr/src/app/upload/encoded-video - /etc/localtime:/etc/localtime:ro - ${HOMEDATA}/Pictures:/photos:ro env_file: - .env ports: - 2283:3001 environment: DB_USERNAME: ${ADMIN_USER} DB_PASSWORD: ${ADMIN_PASSWORD} DB_DATABASE_NAME: immich DB_HOSTNAME: immich_postgres TZ: ${TIMEZONE} depends_on: - immich_redis - immich_postgres restart: always immich_microservices: container_name: immich_microservices image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} command: [ "start.sh", "microservices" ] env_file: - .env environment: DB_USERNAME: ${ADMIN_USER} DB_PASSWORD: ${ADMIN_PASSWORD} DB_DATABASE_NAME: immich DB_HOSTNAME: immich_postgres TZ: ${TIMEZONE} volumes: - ./immich/library:/usr/src/app/upload/library - ./immich/cache/upload:/usr/src/app/upload/upload - ./immich/cache/thumbs:/usr/src/app/upload/thumbs - ./immich/cache/profile:/usr/src/app/upload/profile - ./immich/cache/encoded-video:/usr/src/app/upload/encoded-video - /etc/localtime:/etc/localtime:ro - ${HOMEDATA}/Pictures:/photos:ro depends_on: - immich_redis - immich_postgres restart: always immich-machine-learning: container_name: immich_machine_learning image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release} volumes: - ./immich/library:/usr/src/app/upload/library - ./immich/cache/upload:/usr/src/app/upload/upload - ./immich/cache/thumbs:/usr/src/app/upload/thumbs - ./immich/cache/profile:/usr/src/app/upload/profile - ./immich/cache/encoded-video:/usr/src/app/upload/encoded-video - ./immich-machine-learning/model-cache:/cache restart: always environment: TZ: ${TIMEZONE} immich_redis: image: registry.hub.docker.com/library/redis:6.2-alpine@sha256:84882e87b54734154586e5f8abd4dce69fe7311315e2fc6d67c29614c8de2672 container_name: immich_redis restart: always environment: TZ: ${TIMEZONE} healthcheck: test: ["CMD", "redis-cli", "ping"] interval: 10s timeout: 5s retries: 5 volumes: - ./immich-redis:/data immich_postgres: container_name: immich_postgres image: registry.hub.docker.com/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0 environment: POSTGRES_PASSWORD: ${ADMIN_PASSWORD} POSTGRES_USER: ${ADMIN_USER} POSTGRES_DB: immich POSTGRES_INITDB_ARGS: '--data-checksums' ports: - "5432:5432" volumes: - ./immich-postgres:/var/lib/postgresql/data 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 labels: autoheal-app: true ``` ### Your .env content ```Shell IMMICH_VERSION=v1.105.1 ``` ### Reproduction steps ```bash Upgrade to v1.105.1 Open Immich in a browser Try to load Jobs page ``` ### Relevant log output ```shell Error: getaddrinfo EAI_AGAIN redis at GetAddrInfoReqWrap.onlookup [as oncomplete] (node:dns:109:26) at GetAddrInfoReqWrap.callbackTrampoline (node:internal/async_hooks:130:17) { errno: -3001, code: 'EAI_AGAIN', syscall: 'getaddrinfo', hostname: 'redis' } ``` ### Additional information I don't get this error in v1.102.3
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#3148