apperrault
apperrault
IImmich
Created by apperrault on 9/30/2023 in #help-desk-support
Microservices will not stay running
No description
7 replies
IImmich
Created by apperrault on 9/16/2023 in #help-desk-support
Unable to login
So last night I deleted my immich containers and re-composed them. When I first launched the containers last night, I was able to setup my Admin account, and logged in and setup my normal user account. I then went to bed. this morning, I went to go back and setup the API key for my user account and start importing pictures again and I couldn't get to the login page. When I look at the logs for immich_web I am seeing this
09/16/2023 12:08:19 PM
[hooks.server.ts] Unable to get my user {
09/16/2023 12:08:19 PM
message: 'Invalid user token',
09/16/2023 12:08:19 PM
code: '401 - Unauthorized',
09/16/2023 12:08:19 PM
stack: undefined
09/16/2023 12:08:19 PM
}
09/16/2023 12:08:19 PM
[hooks.server.ts] Unable to get my user {
09/16/2023 12:08:19 PM
message: 'Invalid user token',
09/16/2023 12:08:19 PM
code: '401 - Unauthorized',
09/16/2023 12:08:19 PM
stack: undefined
09/16/2023 12:08:19 PM
}
And when i look at immich_proxy I see this
09/16/2023 12:02:59 PM
2023/09/16 16:02:59 [error] 44#44: *2 connect() failed (113: Host is unreachable) while connecting to upstream, client: 192.168.0.150, server: , request: "GET /api/server-info/features HTTP/1.1", upstream: "http://172.18.0.45:3001/server-info/features", host: "192.168.0.6:2283", referrer: "http://192.168.0.6:2283/auth/login"
09/16/2023 12:02:59 PM
2023/09/16 16:02:59 [error] 48#48: *14 connect() failed (113: Host is unreachable) while connecting to upstream, client: 192.168.0.150, server: , request: "GET /api/server-info/config HTTP/1.1", upstream: "http://172.18.0.45:3001/server-info/config", host: "192.168.0.6:2283", referrer: "http://192.168.0.6:2283/auth/login"
09/16/2023 12:02:59 PM
2023/09/16 16:02:59 [error] 44#44: *2 connect() failed (113: Host is unreachable) while connecting to upstream, client: 192.168.0.150, server: , request: "GET /api/server-info/features HTTP/1.1", upstream: "http://172.18.0.45:3001/server-info/features", host: "192.168.0.6:2283", referrer: "http://192.168.0.6:2283/auth/login"
09/16/2023 12:02:59 PM
2023/09/16 16:02:59 [error] 48#48: *14 connect() failed (113: Host is unreachable) while connecting to upstream, client: 192.168.0.150, server: , request: "GET /api/server-info/config HTTP/1.1", upstream: "http://172.18.0.45:3001/server-info/config", host: "192.168.0.6:2283", referrer: "http://192.168.0.6:2283/auth/login"
Oh, and I can't get to the login page either locally or via external address. Any thoughts? thanks
36 replies
IImmich
Created by apperrault on 9/13/2023 in #help-desk-support
Force re-sync on Android
No description
7 replies
IImmich
Created by apperrault on 8/15/2023 in #help-desk-support
Upload location not being "honored"
No description
17 replies
IImmich
Created by apperrault on 8/14/2023 in #help-desk-support
Docker Compose issues.
Hi all I am in the process of trying to install immich on a new docker system and I am running into an issue with my docker compose. When i try and run it, I get this message
[sudo] password for aaron:
2023-08-14 14:46:37 [NOTICE] Creating environment variables for enabled apps. Please be patient, this can take a while.
2023-08-14 14:46:38 [NOTICE] Adding compose configurations for enabled apps. Please be patient, this can take a while.
validating /home/aaron/.docker/compose/docker-compose.override.yml: services.immich-server.environment must be a mapping
2023-08-14 14:46:38 [FATAL ] Failed to run compose.
Failing command: docker compose --project-directory /home/aaron/.docker/compose/ up -d --remove-orphan
[sudo] password for aaron:
2023-08-14 14:46:37 [NOTICE] Creating environment variables for enabled apps. Please be patient, this can take a while.
2023-08-14 14:46:38 [NOTICE] Adding compose configurations for enabled apps. Please be patient, this can take a while.
validating /home/aaron/.docker/compose/docker-compose.override.yml: services.immich-server.environment must be a mapping
2023-08-14 14:46:38 [FATAL ] Failed to run compose.
Failing command: docker compose --project-directory /home/aaron/.docker/compose/ up -d --remove-orphan
here is the relevant portions of the compose file:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
command: [ "start.sh", "immich" ]
environment:
- DB_HOSTNAME: postgresql-immich
- DB_USERNAME: pguser-immich
- DB_PASSWORD: XXXXXXXXXXXXXXXXXXXXXXXXX
- DB_DATABASE_NAME: pgdb-immich
- DB_PORT: 5433
- REDIS_HOSTNAME: redis
- REDIS_PASSWORD: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
- TYPESENSE_API_KEY: XXXXXXXXXXXXXXXXXXXXXXXXXXXX
- TYPESENSE_HOST: typesense
volumes:
- ${DOCKERCONFDIR}/immich:/data
- ${DOCKERSTORAGEDIR}:/storage
depends_on:
- redis
- postgresql-immich
- typesense
restart: always
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
command: [ "start.sh", "immich" ]
environment:
- DB_HOSTNAME: postgresql-immich
- DB_USERNAME: pguser-immich
- DB_PASSWORD: XXXXXXXXXXXXXXXXXXXXXXXXX
- DB_DATABASE_NAME: pgdb-immich
- DB_PORT: 5433
- REDIS_HOSTNAME: redis
- REDIS_PASSWORD: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
- TYPESENSE_API_KEY: XXXXXXXXXXXXXXXXXXXXXXXXXXXX
- TYPESENSE_HOST: typesense
volumes:
- ${DOCKERCONFDIR}/immich:/data
- ${DOCKERSTORAGEDIR}:/storage
depends_on:
- redis
- postgresql-immich
- typesense
restart: always
Any idea what I might be missing
8 replies