sebi
IImmich
•Created by sebi on 3/28/2025 in #help-desk-support
Immich Server wont start Portainer
2025-03-28 11:13:29.438 UTC [1] LOG: listening on IPv6 address "::", port 5432
2025-03-28 11:13:29.444 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2025-03-28 11:13:29.453 UTC [28] LOG: database system was shut down at 2025-03-28 11:13:25 UTC
2025-03-28 11:13:29.466 UTC [1] LOG: database system is ready to accept connections
2025-03-28 15:34:24.935 UTC [317] FATAL: role "postgres" does not exist
2025-03-28 15:34:34.945 UTC [319] FATAL: role "postgres" does not exist
2025-03-28 15:34:39.776 UTC [321] FATAL: role "postgres" does not exist
2025-03-28 15:34:43.169 UTC [324] FATAL: role "postgres" does not exist
2025-03-28 15:35:07.532 UTC [327] FATAL: role "root" does not exist
2025-03-28 15:35:29.569 UTC [329] FATAL: role "postgres" does not exist
can these be the reason ??
11 replies
IImmich
•Created by sebi on 3/28/2025 in #help-desk-support
Immich Server wont start Portainer
yes
11 replies
IImmich
•Created by sebi on 3/28/2025 in #help-desk-support
Immich Server wont start Portainer
Postgres Logs:
PostgreSQL Database directory appears to contain a database; Skipping initialization
2025-03-28 11:13:29.438 UTC [1] LOG: redirecting log output to logging collector process
2025-03-28 11:13:29.438 UTC [1] HINT: Future log output will appear in directory "log".
11 replies
IImmich
•Created by sebi on 3/28/2025 in #help-desk-support
Immich Server wont start Portainer
services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
labels:
- traefik.enable=true
- traefik.http.routers.immich.rule=Host(
immich.$DOMAIN_NAME
)
- traefik.http.routers.immich.tls=true
- traefik.http.routers.immich.tls.certresolver=letsEncrypt
#- traefik.http.routers.immich.middlewares=authelia@docker
env_file:
- stack.env
volumes:
- ${DATA_DIR}/media/Photos/immich:/usr/src/app/upload
- ${DATA_DIR}/media/Photos/external:/usr/src/app/external
- /etc/localtime:/etc/localtime:ro
ports:
- "2283:2283"
networks:
- web
restart: unless-stopped
immich-machine-learning:
container_name: immich_machine_learning
image: ghcr.io/immich-app/immich-machine-learning:release
env_file:
- stack.env
volumes:
- ${APP_DIR}/immich/model-cache:/cache
networks:
- web
restart: unless-stopped
networks:
web:
external: true11 replies