Redis - Installationsproblem Paperless-ngx UGREN

Hallo Leute,

ich gebs auf jetzt nach Stunden vom rumprobieren.

Ich ziehe gerade von einem Synology auf ein Ugreen um, aufgurnd der besseren Hardware.

Jetzt bekomme ich aber mit Docker nicht den Container zum Laufen, wegen postgresql Problem.

Hat jemand einen Tipp? (Alle Passwörter etc werden nochmals geändert, egal in diesem Post)

Nutzer Boss hat Adminrolle sowie Lese/Schreibe-Rechte auf gesamten Docker-Ordner.

Firewall ist aus - Installation auf M.2 NVME SSD

Hobe es bereits in der Docker-App angelegt, als auch per SSH wie in der Masterclass , selbiges Problem.

Compose:

services:
  broker:
    image: docker.io/library/redis:8.4.0
    container_name: paperless-redis
    restart: always
    volumes:
      - /volume2/docker/paperless-ngx/redis:/data
    networks:
      - paperless-network

  db:
    image: docker.io/library/postgres:18.1
    container_name: paperless-db
    restart: always
    environment:
      POSTGRES_DB: paperless
      POSTGRES_USER: paperless
      POSTGRES_PASSWORD: mtzHULDBHAwzRHiGhYuWLP9cpdbt83FT2NvsPJRW  # Ändere dieses Passwort!
    volumes:
      - /volume2/docker/paperless-ngx/db:/var/lib/postgresql
    networks:
      - paperless-network

  webserver:
    image: ghcr.io/paperless-ngx/paperless-ngx:2.20.3
    container_name: paperless-web
    restart: always
    depends_on:
      - broker
      - db
    environment:
      PAPERLESS_REDIS: redis://broker:6379
      PAPERLESS_DBHOST: db
      PAPERLESS_DBNAME: paperless
      PAPERLESS_DBUSER: paperless
      PAPERLESS_DBPASS: mtzHULDBHAwzRHiGhYuWLP9cpdbt83FT2NvsPJRW  # Passwort muss mit dem PostgreSQL-Passwort übereinstimmen.
      PAPERLESS_SECRET_KEY: KHUhJLFfYD7QWopyqwAhwpiBhZgZN8CUPb9zEcYaxd7QYgUHoqowBJaNQG9xjs2kt34XJvPFvGPJGVKw  # Ändere diesen Wert!
      PAPERLESS_URL: http://XXXXXXXXXXXXX:8000
      PAPERLESS_ALLOWED_HOSTS: "*"
      PAPERLESS_ADMIN_USER: admin
      PAPERLESS_ADMIN_PASSWORD: kY3ADgDQXxZNo2qFpqg8FXz9taWjxDc3jmTbWfAB  # Ändere dieses Passwort!
      PAPERLESS_FILENAME_FORMAT: '{{ correspondent }}/{{ created_year }}/{{ created }}_{{ document_type }}_{{ title }}'
      PAPERLESS_TIME_ZONE: Europe/Berlin
      PAPERLESS_OCR_LANGUAGE: deu
      PAPERLESS_OCR_MODE: skip
      PAPERLESS_EMPTY_TRASH_DELAY: 30
      PAPERLESS_EMPTY_TRASH_DIR: /usr/src/paperless/trash
      PAPERLESS_OCR_TESSERACT_MODE: 1
      USERMAP_UID: 1000
      USERMAP_GID: 10
    volumes:
      - /volume2/docker/paperless-ngx/data:/usr/src/paperless/data
      - /volume2/docker/paperless-ngx/media:/usr/src/paperless/media
      - /volume2/docker/paperless-ngx/export:/usr/src/paperless/export
      - /volume2/docker/paperless-ngx/consume:/usr/src/paperless/consume
      - /volume2/docker/paperless-ngx/trash:/usr/src/paperless/trash
    ports:
      - 8000:8000
    networks:
      - paperless-network

networks:
  paperless-network:
    driver: bridge
      

SSH-ID:

boss@NAS-Schulte:/volume2/docker/paperless-ngx/config$ id
uid=1000(boss) gid=10(admin) groups=10(admin),100(users)

Fehlermeldung Log:

paperless-web    | [init-db-wait] Attempt 6 failed! Trying again in 6 seconds...
paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Attempt 7 failed! Trying again in 7 seconds...
paperless-db     | mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
paperless-db     | mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
paperless-web    | db:5432 - no response
paperless-redis  | 1:M 24 Dec 2025 20:15:15.891 * <bf>  { bf-expansion-factor :         2 }
paperless-redis  | 1:M 24 Dec 2025 20:15:15.891 * <bf>  { cf-bucket-size      :         2 }
paperless-redis  | 1:M 24 Dec 2025 20:15:15.891 * <bf>  { cf-initial-size     :      1024 }
paperless-redis  | 1:M 24 Dec 2025 20:15:15.891 * <bf>  { cf-max-iterations   :        20 }
paperless-redis  | 1:M 24 Dec 2025 20:15:15.891 * <bf>  { cf-expansion-factor :         1 }
paperless-redis  | 1:M 24 Dec 2025 20:15:15.891 * <bf>  { cf-max-expansions   :        32 }
paperless-redis  | 1:M 24 Dec 2025 20:15:15.891 * <bf> ]
paperless-redis  | 1:M 24 Dec 2025 20:15:15.891 * Module 'bf' loaded from /usr/local/lib/redis/modules//redisbloom.so
paperless-redis  | 1:M 24 Dec 2025 20:15:15.894 * <search> Redis version found by RedisSearch : 8.4.0 - oss
paperless-redis  | 1:M 24 Dec 2025 20:15:15.894 * <search> RediSearch version 8.4.2 (Git=9e2b676)
paperless-redis  | 1:M 24 Dec 2025 20:15:15.894 * <search> Low level api version 1 initialized successfully
paperless-redis  | 1:M 24 Dec 2025 20:15:15.894 * <search> gc: ON, prefix min length: 2, min word length to stem: 4, prefix max expansions: 200, query timeout (ms): 500, timeout policy: return, oom policy: return, cursor read size: 1000, cursor max idle (ms): 300000, max doctable size: 1000000, max number of search results:  1000000, default scorer: BM25STD, 
paperless-redis  | 1:M 24 Dec 2025 20:15:15.894 * <search> Initialized threa
d pools!
paperless-redis  | 1:M 24 Dec 2025 20:15:15.894 * <search> Disabled workers threadpool of size 0
paperless-redis  | 1:M 24 Dec 2025 20:15:15.894 * <search> Subscribe to config changes
paperless-redis  | 1:M 24 Dec 2025 20:15:15.894 * <search> Subscribe to cluster slot migration events
paperless-redis  | 1:M 24 Dec 2025 20:15:15.894 * <search> Enabled role change notification
paperless-redis  | 1:M 24 Dec 2025 20:15:15.894 * <search> Cluster configuration: AUTO partitions, type: 0, coordinator timeout: 0ms
paperless-redis  | 1:M 24 Dec 2025 20:15:15.894 * <search> Register write commands
paperless-redis  | 1:M 24 Dec 2025 20:15:15.895 * Module 'search' loaded from /usr/local/lib/redis/modules//redisearch.so
paperless-redis  | 1:M 24 Dec 2025 20:15:15.895 * <timeseries> RedisTimeSeries version 80400, git_sha=3520a1568ad69076d60885c70711fbdc9b448749
paperless-redis  | 1:M 24 Dec 
2025 20:15:15.895 * <timeseries> Redis version found by RedisTimeSeries : 8.4.0 - oss
paperless-redis  | 1:M 24 Dec 2025 20:15:15.895 * <timeseries> Registering configuration options: [
paperless-web    | [init-db-wait] Attempt 8 failed! Trying again in 8 seconds...
paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Attempt 9 failed! Trying again in 9 seconds...
paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Attempt 10 failed! Trying again in 10 seconds...
paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Attempt 11 failed! Trying again in 5 seconds...
paperless-redis  | 1:M 24 Dec 2025 20:15:15.895 * <timeseries>  { ts-compaction-policy   :              }

paperless-redis  | 1:M 24 Dec 2025 20:15:15.895 * <timeseries>  { ts-num-threads         :            3 }
paperless-redis  | 1:M 24 Dec 2025 20:15:15.895 * <timeseries>  { ts-retention-policy    :            0 }
paperless-redis  | 1:M 24 Dec 2025 20:15:15.895 * <timeseries>  { ts-duplicate-policy    :        block }
paperless-redis  | 1:M 24 Dec 2025 20:15:15.895 * <timeseries>  { ts-chunk-size-bytes    :         4096 }
paperless-db     | mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
paperless-db     | mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
paperless-db     | mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
paperless-db     | mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied

paperless-db     | mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
paperless-db     | mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
paperless-db     | mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
paperless-db     | mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied

paperless-db     | mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
paperless-db     | mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
paperless-db     | mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
paperless-db     | mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
paperless-redis  | 1:M 24 Dec 2025 20:15:15.895 * <timeseries>  { ts-encoding            :   compressed }
paperless-redis  | 1:M 24 Dec 2025 20:15:15.895 * <timeseries>  { ts-ignore-max-time-diff:            0 }
paperless-redis  | 1:M 24 Dec 2025 20:15:15.895 * <timeseries>  { ts-ignore-max-val-diff :     0.000000 }
paperless-redis  | 1:M 24 Dec 2025 20:15:15.895 * <timeseries> ]
paperless-redis  | 1:M 24 Dec 2025 20:15:15.895 * <timeseries> Detected redis oss
paperless-redis  | 1:M 24 Dec 2025 20:15:15.895 * <timeseries> Subscribe to ASM events
paperless-redis  | 1:M 24 Dec 2025 20:15:15.895 * <timeseries> Enabled diskless replication

paperless-redis  | 1:M 24 Dec 2025 20:15:15.895 * Module 'timeseries' loaded from /usr/local/lib/redis/modules//redistimeseries.so
paperless-redis  | 1:M 24 Dec 2025 20:15:15.896 * <ReJSON> Created new data type 'ReJSON-RL'
paperless-redis  | 1:M 24 Dec 2025 20:15:15.896 * <ReJSON> version: 80400 git sha: unknown branch: unknown
paperless-redis  | 1:M 24 Dec 2025 20:15:15.896 * <ReJSON> Exported RedisJSON_V1 API
paperless-redis  | 1:M 24 Dec 2025 20:15:15.896 * <ReJSON> Exported RedisJSON_V2 API
paperless-redis  | 1:M 24 Dec 2025 20:15:15.896 * <ReJSON> Exported RedisJSON_V3 API
paperless-redis  | 1:M 24 Dec 2025 20:15:15.896 * <ReJSON> Exported RedisJSON_V4 API
paperless-redis  | 1:M 24 Dec 2025 20:15:15.896 * <ReJSON> Exported RedisJSON_V5 API
paperless-redis  | 1:M 24 Dec 2025 20:15:15.896 * <ReJSON> Exported RedisJSON_V6 API

paperless-redis  | 1:M 24 Dec 2025 20:15:15.896 * <ReJSON> Enabled diskless replication
paperless-redis  | 1:M 24 Dec 2025 20:15:15.896 * <ReJSON> Initialized shared string cache, thread safe: true.
paperless-redis  | 1:M 24 Dec 2025 20:15:15.896 * Module 'ReJSON' loaded from /usr/local/lib/redis/modules//rejson.so
paperless-redis  | 1:M 24 Dec 2025 20:15:15.896 * <search> Acquired RedisJSON_V6 API
paperless-redis  | 1:M 24 Dec 2025 20:15:15.896 * Server initialized
paperless-redis  | 1:M 24 Dec 2025 20:15:15.896 * Ready to accept connections tcp
paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Unable to connect after 60 seconds.
paperless-web    | s6-rc: warning: unable to start service init-wait-for-db: command exited 1
paperless-web    | /run/s6/basedir/scripts/rc.init: warning: s6-rc failed to properly bring all the services up! Check your logs (in /run/uncaught-logs/current if you have in-container logging) for more information.
paperless-web    | /run/s6/basedir/scripts/rc.init: fatal: stopping the container.
paperless-web    | [init-start] paperless-ngx docker container starting...
paperless-web    | [init-start] paperless-ngx docker container starting init as root
paperless-web    | [env-init] Checking for environment from files
paperless-web    | [env-init] No *_FILE environment found
paperless-web    | [init-redis-wait] Waiting for Redis to report ready
paperless-web    | [init-tesseract-langs] Checking if additional teseract languages needed
paperless-web    | [init-tesseract-langs] No additional installs requested
paperless-web    | [init-db-wait] Waiting for PostgreSQL to start...
paperless-web    | [init-user] No UID changes for paperless
paperless-web    | [init-user] No GID changes for paperless
paperless-web    | [init-folders] Running with root privileges, adjusting directories and permissions
paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Attempt 1 failed! Trying again in 1 seconds...
paperless-web    | Waiting for Redis...
paperless-web    | Connected to Redis broker.
paperless-web    | [init-redis-wait] Redis ready
paperless-web    | db:5432 - no response
paperle
ss-web    | [init-db-wait] Attempt 2 failed! Trying again in 2 seconds...
paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Attempt 3 failed! Trying again in 3 seconds...
paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Attempt 4 failed! Trying again in 4 seconds...
paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Attempt 5 failed! Trying again in 5 seconds...
paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Attempt 6 failed! Trying again in 6 seconds...
paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Attempt 7 failed! Trying again in 7 seconds...
paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Attempt 8 failed! Trying again in 8 seconds...
paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Attempt 9 failed! Trying again in 9 seconds...
paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Attempt 10 failed! Trying again in 10 seconds...

paperless-db     | mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
paperless-db     | mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
paperless-db     | mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
paperless-db     | mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Attempt 11 failed! Trying again in 5 seconds...
paperless-web    | db:5432 - no response

paperless-web    | [init-db-wait] Unable to connect after 60 seconds.

paperless-web    | s6-rc: warning: unable to start service init-wait-for-db: command exited 1
paperless-web    | /run/s6/basedir/scripts/rc.init: warning: s6-rc failed to properly bring all the services up! Check your logs (in /run/uncaught-logs/current if you have in-container logging) for more information.
paperless-web    | /run/s6/basedir/scripts/rc.init: fatal: stopping the container.
paperless-web exited with code 0

paperless-web    | [init-start] paperless-ngx docker container starting...

paperless-web    | [init-start] paperless-ngx docker container starting init as root

paperless-web    | [env-init] Checking for environment from files

paperless-web    | [env-init] No *_FILE environment found


paperless-web    | [init-redis-wait] Waiting for Redis to report ready
paperless-web    | [init-tesseract-langs] Checking if additional teseract languages needed
paperless-web    | [init-db-wait] Waiting for PostgreSQL to start...


paperless-web    | [init-tesseract-langs] No additional installs requested

paperless-web    | [init-user] No UID changes for paperless

paperless-web    | [init-user] No GID changes for paperless
paperless-web    | [init-folders] Running with root privileges, adjusting directories and permissions
paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Attempt 1 failed! Trying again in 1 seconds...

paperless-web    | Waiting for Redis...
paperless-web    | Connected to Redis broker.
paperless-web    | [init-redis-wait] Redis ready
paperless-web    | db:5432 - no response

paperless-web    | [init-db-wait] Attempt 2 failed! Trying again in 2 seconds...

paperless-web    | db:5432 - no response


paperless-web    | [init-db-wait] Attempt 3 failed! Trying again in 3 seconds...
paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Attempt 4 failed! Trying again in 4 seconds...
paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Attempt 5 failed! Trying again in 5 seconds...
paperless-db     | mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied

paperless-db exited with code 1


paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Attempt 6 failed! Trying again in 6 seconds...
paperless-web    | db:5432 - no response
paperless-web    | [init-db-wait] Attempt 7 failed! Trying again in 7 seconds...
mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied
mkdir: cannot create directory ‘/var/lib/postgresql’: Permission denied

So fragt mich nicht was ich getan habe, aber hab mal Internet / ChatGPT vertraut und jetzt läufts.

vorher:

boss@NAS-Schulte:/$ ls -ld /volume2/docker/paperless-ngx/db
drwxrwxrwx 1 boss admin 0 Dec 24 22:40 /volume2/docker/paperless-ngx/db

nacher:

boss@NAS-Schulte:/$ ls -ld /volume2/docker/paperless-ngx/db
drwx------ 1 dnsmasq systemd-journal 0 Dec 24 22:40 /volume2/docker/paperless-ngx/db

per SHH folgende Commands:

sudo chown -R 999:999 /volume2/docker/paperless-ngx/db
sudo chown -R 999:999 /volume2/docker/paperless-ngx/redis

sudo chmod -R 700 /volume2/docker/paperless-ngx/db
sudo chmod -R 700 /volume2/docker/paperless-ngx/redis


Die Version 18 verlangt ein anderes Verzeichnis hinter dem Doppelpunkt

Eintrag wurde gelöscht

Hab das mal probiert:

paperless-db     | Error: in 18+, these Docker images are configured to store database data in a
paperless-db     |        format which is compatible with "pg_ctlcluster" (specifically, using
paperless-db     |        major-version-specific directory names).  This better reflects how
paperless-db     |        PostgreSQL itself works, and how upgrades are to be performed.
paperless-db     | 
paperless-db     |        See also https://github.com/docker-library/postgres/pull/1259
paperless-db     | 
paperless-db     |        Counter to that, there appears to be PostgreSQL data in:
paperless-db     |          /var/lib/postgresql/data (unused mount/volume)

paperless-db     | 
paperless-db     |        This is usually the result of upgrading the Docker image without
paperless-db     |        upgrading the underlying database using "pg_upgrade" (which requires both
paperless-db     |        versions).
paperless-db     | 
paperless-db     |        The suggested container configuration for 18+ is to place a single mount
paperless-db     |        at /var/lib/postgresql which will then place PostgreSQL data in a
paperless-db     |        subdirectory, allowing usage of "pg_upgrade --link" without mount point
paperless-db     |        boundary issues.
paperless-db     | 
paperless-db     |        See https://github.com/docker-library/postgres/issues/37 for a (long)
paperless-db     |        discussion around this process, and suggestions for how to do so.
paperless-db exited with code 1

Ab Version 18 braucht es den Pfad ohne Data, den Fehler hatte ich damals in Synolgy DSM auch, ohne “Data” liefs.

Sorry mein Fehler Version 17 hatte noch das Verzeichnis data.

Ich rewidire meine Aussage, es hat kurz funktioniert aber geht jetzt auf einmal wieder nicht mehr. Habe nichts verändert.

Hat jemand noch eine Idee?

2025-12-25T09:29:13.928162818Z  The files belonging to this database system will be owned by user "postgres".
2025-12-25T09:29:13.928197133Z  This user must also own the server process.
2025-12-25T09:29:13.928208700Z  
2025-12-25T09:29:13.928213084Z  The database cluster will be initialized with locale "en_US.utf8".
2025-12-25T09:29:13.928216671Z  The default database encoding has accordingly been set to "UTF8".
2025-12-25T09:29:13.928220049Z  The default text search configuration will be set to "english".
2025-12-25T09:29:13.928223731Z  
2025-12-25T09:29:13.928226817Z  Data page checksums are enabled.
2025-12-25T09:29:13.928240397Z  
2025-12-25T09:29:13.928245241Z  fixing permissions on existing directory /var/lib/postgresql/18/docker ... ok
2025-12-25T09:29:13.928553119Z  creating subdirectories ... ok
2025-12-25T09:29:13.929055845Z  selecting dynamic shared memory implementation ... posix
2025-12-25T09:29:13.949803600Z  selecting default "max_connections" ... 100
2025-12-25T09:29:13.966693334Z  selecting default "shared_buffers" ... 128MB
2025-12-25T09:29:13.980981416Z  selecting default time zone ... Etc/UTC
2025-12-25T09:29:13.982311444Z  creating configuration files ... ok
2025-12-25T09:29:14.129693781Z  running bootstrap script ... ok
2025-12-25T09:29:14.533974241Z  performing post-bootstrap initialization ... ok
2025-12-25T09:29:15.328010389Z  syncing data to disk ... ok
2025-12-25T09:29:15.328019798Z  initdb: warning: enabling "trust" authentication for local connections
2025-12-25T09:29:15.328042115Z  initdb: hint: You can change this by editing pg_hba.conf or using the option -A, or --auth-local and --auth-host, the next time you run initdb.
2025-12-25T09:29:15.328031511Z  
2025-12-25T09:29:15.328055711Z  
2025-12-25T09:29:15.328059669Z  Success. You can now start the database server using:
2025-12-25T09:29:15.328063044Z  
2025-12-25T09:29:15.328066255Z      pg_ctl -D /var/lib/postgresql/18/docker -l logfile start
2025-12-25T09:29:15.328069671Z  
2025-12-25T09:29:15.379260806Z  waiting for server to start....2025-12-25 09:29:15.378 UTC [52] LOG:  starting PostgreSQL 18.1 (Debian 18.1-1.pgdg13+2) on x86_64-pc-linux-gnu, compiled by gcc (Debian 14.2.0-19) 14.2.0, 64-bit
2025-12-25T09:29:15.380656921Z  2025-12-25 09:29:15.380 UTC [52] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2025-12-25T09:29:15.388484913Z  2025-12-25 09:29:15.388 UTC [58] LOG:  database system was shut down at 2025-12-25 09:29:14 UTC
2025-12-25T09:29:15.392489736Z  2025-12-25 09:29:15.392 UTC [52] LOG:  database system is ready to accept connections
2025-12-25T09:29:15.450352177Z   done
2025-12-25T09:29:15.450423766Z  server started
2025-12-25T09:29:15.663659164Z  CREATE DATABASE
2025-12-25T09:29:15.663988905Z  
2025-12-25T09:29:15.664380292Z  
2025-12-25T09:29:15.664682907Z  /usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/*
2025-12-25T09:29:15.664708905Z  
2025-12-25T09:29:15.666624162Z  2025-12-25 09:29:15.666 UTC [52] LOG:  received fast shutdown request
2025-12-25T09:29:15.668057664Z  waiting for server to shut down....2025-12-25 09:29:15.667 UTC [52] LOG:  aborting any active transactions
2025-12-25T09:29:15.672438053Z  2025-12-25 09:29:15.672 UTC [52] LOG:  background worker "logical replication launcher" (PID 61) exited with exit code 1
2025-12-25T09:29:15.673843762Z  2025-12-25 09:29:15.673 UTC [56] LOG:  shutting down
2025-12-25T09:29:15.675261945Z  2025-12-25 09:29:15.674 UTC [56] LOG:  checkpoint starting: shutdown immediate
2025-12-25T09:29:15.924977280Z  2025-12-25 09:29:15.924 UTC [56] LOG:  checkpoint complete: wrote 943 buffers (5.8%), wrote 3 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.022 s, sync=0.222 s, total=0.252 s; sync files=303, longest=0.007 s, average=0.001 s; distance=4352 kB, estimate=4352 kB; lsn=0/1B9FBB0, redo lsn=0/1B9FBB0
2025-12-25T09:29:15.934034154Z  2025-12-25 09:29:15.933 UTC [52] LOG:  database system is shut down
2025-12-25T09:29:15.967227922Z   done
2025-12-25T09:29:15.967261004Z  server stopped
2025-12-25T09:29:15.969310994Z  
2025-12-25T09:29:15.969345922Z  PostgreSQL init process complete; ready for start up.
2025-12-25T09:29:15.969356102Z  
2025-12-25T09:29:15.990654595Z  2025-12-25 09:29:15.990 UTC [1] LOG:  starting PostgreSQL 18.1 (Debian 18.1-1.pgdg13+2) on x86_64-pc-linux-gnu, compiled by gcc (Debian 14.2.0-19) 14.2.0, 64-bit
2025-12-25T09:29:15.990776619Z  2025-12-25 09:29:15.990 UTC [1] LOG:  listening on IPv4 address "0.0.0.0", port 5432
2025-12-25T09:29:15.990788003Z  2025-12-25 09:29:15.990 UTC [1] LOG:  listening on IPv6 address "::", port 5432
2025-12-25T09:29:15.992347529Z  2025-12-25 09:29:15.992 UTC [1] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2025-12-25T09:29:15.995838745Z  2025-12-25 09:29:15.995 UTC [74] LOG:  database system was shut down at 2025-12-25 09:29:15 UTC
2025-12-25T09:29:15.998828914Z  2025-12-25 09:29:15.998 UTC [1] LOG:  database system is ready to accept connections
2025-12-25T09:34:16.089936851Z  2025-12-25 09:34:16.089 UTC [72] LOG:  checkpoint starting: time
2025-12-25T09:35:10.313900274Z  2025-12-25 09:35:10.313 UTC [72] LOG:  checkpoint complete: wrote 537 buffers (3.3%), wrote 3 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=54.084 s, sync=0.121 s, total=54.225 s; sync files=720, longest=0.009 s, average=0.001 s; distance=4853 kB, estimate=4853 kB; lsn=0/205D280, redo lsn=0/205D1F0
2025-12-25T09:44:16.382552235Z  2025-12-25 09:44:16.382 UTC [72] LOG:  checkpoint starting: time
2025-12-25T09:44:17.529711129Z  2025-12-25 09:44:17.529 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.121 s, sync=0.011 s, total=1.148 s; sync files=12, longest=0.002 s, average=0.001 s; distance=4 kB, estimate=4368 kB; lsn=0/205E260, redo lsn=0/205E208
2025-12-25T09:54:16.723999081Z  2025-12-25 09:54:16.723 UTC [72] LOG:  checkpoint starting: time
2025-12-25T09:54:17.872952675Z  2025-12-25 09:54:17.872 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.121 s, sync=0.011 s, total=1.150 s; sync files=12, longest=0.002 s, average=0.001 s; distance=5 kB, estimate=3932 kB; lsn=0/205F698, redo lsn=0/205F640
2025-12-25T10:04:17.054105859Z  2025-12-25 10:04:17.053 UTC [72] LOG:  checkpoint starting: time
2025-12-25T10:04:18.199578834Z  2025-12-25 10:04:18.199 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.119 s, sync=0.010 s, total=1.146 s; sync files=12, longest=0.002 s, average=0.001 s; distance=6 kB, estimate=3539 kB; lsn=0/2060F58, redo lsn=0/2060F00
2025-12-25T10:09:17.298117995Z  2025-12-25 10:09:17.297 UTC [72] LOG:  checkpoint starting: time
2025-12-25T10:09:19.863862671Z  2025-12-25 10:09:19.863 UTC [72] LOG:  checkpoint complete: wrote 25 buffers (0.2%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=2.528 s, sync=0.020 s, total=2.566 s; sync files=24, longest=0.002 s, average=0.001 s; distance=13 kB, estimate=3187 kB; lsn=0/2064660, redo lsn=0/2064608
2025-12-25T10:14:17.957292181Z  2025-12-25 10:14:17.956 UTC [72] LOG:  checkpoint starting: time
2025-12-25T10:14:25.605819767Z  2025-12-25 10:14:25.605 UTC [72] LOG:  checkpoint complete: wrote 75 buffers (0.5%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=7.573 s, sync=0.058 s, total=7.649 s; sync files=67, longest=0.003 s, average=0.001 s; distance=26 kB, estimate=2870 kB; lsn=0/206BEA0, redo lsn=0/206AE78
2025-12-25T10:19:17.705923096Z  2025-12-25 10:19:17.705 UTC [72] LOG:  checkpoint starting: time
2025-12-25T10:19:20.875420240Z  2025-12-25 10:19:20.875 UTC [72] LOG:  checkpoint complete: wrote 31 buffers (0.2%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=3.132 s, sync=0.019 s, total=3.170 s; sync files=22, longest=0.002 s, average=0.001 s; distance=14 kB, estimate=2585 kB; lsn=0/206E788, redo lsn=0/206E730
2025-12-25T10:24:17.974306987Z  2025-12-25 10:24:17.973 UTC [72] LOG:  checkpoint starting: time
2025-12-25T10:24:19.126580807Z  2025-12-25 10:24:19.126 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.121 s, sync=0.012 s, total=1.153 s; sync files=12, longest=0.002 s, average=0.001 s; distance=10 kB, estimate=2327 kB; lsn=0/20711B0, redo lsn=0/2071158
2025-12-25T10:34:17.326106394Z  2025-12-25 10:34:17.325 UTC [72] LOG:  checkpoint starting: time
2025-12-25T10:34:18.476224193Z  2025-12-25 10:34:18.475 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.122 s, sync=0.010 s, total=1.151 s; sync files=12, longest=0.001 s, average=0.001 s; distance=11 kB, estimate=2096 kB; lsn=0/2074068, redo lsn=0/2073FF8
2025-12-25T10:44:17.666315582Z  2025-12-25 10:44:17.665 UTC [72] LOG:  checkpoint starting: time
2025-12-25T10:44:18.815337791Z  2025-12-25 10:44:18.815 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.122 s, sync=0.010 s, total=1.150 s; sync files=12, longest=0.001 s, average=0.001 s; distance=12 kB, estimate=1887 kB; lsn=0/20773B8, redo lsn=0/2077328
2025-12-25T10:54:18.006137110Z  2025-12-25 10:54:18.005 UTC [72] LOG:  checkpoint starting: time
2025-12-25T10:54:19.158163575Z  2025-12-25 10:54:19.157 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.122 s, sync=0.010 s, total=1.153 s; sync files=12, longest=0.002 s, average=0.001 s; distance=13 kB, estimate=1700 kB; lsn=0/207AB60, redo lsn=0/207AB08
2025-12-25T11:04:18.334226315Z  2025-12-25 11:04:18.333 UTC [72] LOG:  checkpoint starting: time
2025-12-25T11:04:19.481094147Z  2025-12-25 11:04:19.480 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.119 s, sync=0.009 s, total=1.148 s; sync files=12, longest=0.001 s, average=0.001 s; distance=15 kB, estimate=1531 kB; lsn=0/207E780, redo lsn=0/207E728
2025-12-25T11:09:18.579497232Z  2025-12-25 11:09:18.579 UTC [72] LOG:  checkpoint starting: time
2025-12-25T11:09:20.339262548Z  2025-12-25 11:09:20.338 UTC [72] LOG:  checkpoint complete: wrote 17 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.725 s, sync=0.015 s, total=1.760 s; sync files=18, longest=0.002 s, average=0.001 s; distance=20 kB, estimate=1380 kB; lsn=0/2083938, redo lsn=0/20838A8
2025-12-25T11:14:18.377389712Z  2025-12-25 11:14:18.377 UTC [72] LOG:  checkpoint starting: time
2025-12-25T11:14:19.531031069Z  2025-12-25 11:14:19.530 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.122 s, sync=0.011 s, total=1.154 s; sync files=12, longest=0.002 s, average=0.001 s; distance=18 kB, estimate=1244 kB; lsn=0/20882D0, redo lsn=0/2088278
2025-12-25T11:24:18.730311313Z  2025-12-25 11:24:18.729 UTC [72] LOG:  checkpoint starting: time
2025-12-25T11:24:19.877352172Z  2025-12-25 11:24:19.877 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.119 s, sync=0.010 s, total=1.148 s; sync files=12, longest=0.002 s, average=0.001 s; distance=15 kB, estimate=1121 kB; lsn=0/208C178, redo lsn=0/208C120
2025-12-25T11:34:19.029190687Z  2025-12-25 11:34:19.028 UTC [72] LOG:  checkpoint starting: time
2025-12-25T11:34:20.178580272Z  2025-12-25 11:34:20.178 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.121 s, sync=0.011 s, total=1.150 s; sync files=12, longest=0.002 s, average=0.001 s; distance=16 kB, estimate=1011 kB; lsn=0/20904D0, redo lsn=0/2090440
2025-12-25T11:39:19.278963504Z  2025-12-25 11:39:19.278 UTC [72] LOG:  checkpoint starting: time
2025-12-25T11:39:19.401713708Z  2025-12-25 11:39:19.401 UTC [72] LOG:  checkpoint complete: wrote 1 buffers (0.0%), wrote 0 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.102 s, sync=0.002 s, total=0.123 s; sync files=1, longest=0.002 s, average=0.002 s; distance=1 kB, estimate=910 kB; lsn=0/2090B78, redo lsn=0/2090B20
2025-12-25T11:44:19.500064511Z  2025-12-25 11:44:19.499 UTC [72] LOG:  checkpoint starting: time
2025-12-25T11:44:20.649516213Z  2025-12-25 11:44:20.649 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.121 s, sync=0.011 s, total=1.150 s; sync files=12, longest=0.002 s, average=0.001 s; distance=17 kB, estimate=820 kB; lsn=0/2095310, redo lsn=0/20952B8
2025-12-25T11:54:19.838173287Z  2025-12-25 11:54:19.837 UTC [72] LOG:  checkpoint starting: time
2025-12-25T11:54:20.985285371Z  2025-12-25 11:54:20.985 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.119 s, sync=0.011 s, total=1.148 s; sync files=12, longest=0.002 s, average=0.001 s; distance=19 kB, estimate=740 kB; lsn=0/2099F20, redo lsn=0/2099EC8
2025-12-25T12:04:20.181641741Z  2025-12-25 12:04:20.181 UTC [72] LOG:  checkpoint starting: time
2025-12-25T12:04:21.330737780Z  2025-12-25 12:04:21.330 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.120 s, sync=0.010 s, total=1.150 s; sync files=12, longest=0.002 s, average=0.001 s; distance=20 kB, estimate=668 kB; lsn=0/209EFC0, redo lsn=0/209EF68
2025-12-25T12:09:20.431113758Z  2025-12-25 12:09:20.430 UTC [72] LOG:  checkpoint starting: time
2025-12-25T12:09:22.188902597Z  2025-12-25 12:09:22.188 UTC [72] LOG:  checkpoint complete: wrote 17 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.724 s, sync=0.016 s, total=1.758 s; sync files=18, longest=0.002 s, average=0.001 s; distance=26 kB, estimate=604 kB; lsn=0/20A57F8, redo lsn=0/20A57A0
2025-12-25T12:14:20.286086901Z  2025-12-25 12:14:20.285 UTC [72] LOG:  checkpoint starting: time
2025-12-25T12:14:21.435615069Z  2025-12-25 12:14:21.435 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.120 s, sync=0.011 s, total=1.150 s; sync files=12, longest=0.002 s, average=0.001 s; distance=21 kB, estimate=546 kB; lsn=0/20AAE08, redo lsn=0/20AADB0
2025-12-25T12:24:20.616208486Z  2025-12-25 12:24:20.615 UTC [72] LOG:  checkpoint starting: time
2025-12-25T12:24:21.766512043Z  2025-12-25 12:24:21.766 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.120 s, sync=0.011 s, total=1.151 s; sync files=12, longest=0.002 s, average=0.001 s; distance=22 kB, estimate=493 kB; lsn=0/20B08C8, redo lsn=0/20B0838
2025-12-25T12:34:20.966077302Z  2025-12-25 12:34:20.965 UTC [72] LOG:  checkpoint starting: time
2025-12-25T12:34:22.217105516Z  2025-12-25 12:34:22.216 UTC [72] LOG:  checkpoint complete: wrote 12 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.223 s, sync=0.010 s, total=1.252 s; sync files=13, longest=0.001 s, average=0.001 s; distance=25 kB, estimate=446 kB; lsn=0/20B6EB8, redo lsn=0/20B6E60
2025-12-25T12:44:20.365888015Z  2025-12-25 12:44:20.365 UTC [72] LOG:  checkpoint starting: time
2025-12-25T12:44:24.258681424Z  2025-12-25 12:44:24.258 UTC [72] LOG:  checkpoint complete: wrote 38 buffers (0.2%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=3.848 s, sync=0.027 s, total=3.894 s; sync files=35, longest=0.002 s, average=0.001 s; distance=66 kB, estimate=408 kB; lsn=0/20C77C0, redo lsn=0/20C7730
2025-12-25T12:49:20.358194389Z  2025-12-25 12:49:20.357 UTC [72] LOG:  checkpoint starting: time
2025-12-25T12:49:21.300182517Z  2025-12-25 12:49:21.300 UTC [72] LOG:  checkpoint complete: wrote 9 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.918 s, sync=0.006 s, total=0.943 s; sync files=7, longest=0.001 s, average=0.001 s; distance=5 kB, estimate=368 kB; lsn=0/20C8BB0, redo lsn=0/20C8B58
2025-12-25T12:54:20.400630865Z  2025-12-25 12:54:20.400 UTC [72] LOG:  checkpoint starting: time
2025-12-25T12:54:28.136021491Z  2025-12-25 12:54:28.135 UTC [72] LOG:  checkpoint complete: wrote 76 buffers (0.5%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=7.674 s, sync=0.043 s, total=7.736 s; sync files=53, longest=0.002 s, average=0.001 s; distance=47 kB, estimate=336 kB; lsn=0/20D4968, redo lsn=0/20D4910
2025-12-25T12:59:20.234943020Z  2025-12-25 12:59:20.234 UTC [72] LOG:  checkpoint starting: time
2025-12-25T12:59:24.132253460Z  2025-12-25 12:59:24.132 UTC [72] LOG:  checkpoint complete: wrote 38 buffers (0.2%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=3.846 s, sync=0.033 s, total=3.898 s; sync files=39, longest=0.002 s, average=0.001 s; distance=11 kB, estimate=303 kB; lsn=0/20D7688, redo lsn=0/20D7630
2025-12-25T13:04:20.225276105Z  2025-12-25 13:04:20.225 UTC [72] LOG:  checkpoint starting: time
2025-12-25T13:04:23.299092618Z  2025-12-25 13:04:23.298 UTC [72] LOG:  checkpoint complete: wrote 30 buffers (0.2%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=3.030 s, sync=0.025 s, total=3.074 s; sync files=31, longest=0.002 s, average=0.001 s; distance=53 kB, estimate=278 kB; lsn=0/20E4B20, redo lsn=0/20E4AC8
2025-12-25T13:09:20.390176117Z  2025-12-25 13:09:20.389 UTC [72] LOG:  checkpoint starting: time
2025-12-25T13:09:24.481913987Z  2025-12-25 13:09:24.481 UTC [72] LOG:  checkpoint complete: wrote 40 buffers (0.2%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=4.043 s, sync=0.030 s, total=4.092 s; sync files=41, longest=0.002 s, average=0.001 s; distance=60 kB, estimate=257 kB; lsn=0/20F3E10, redo lsn=0/20F3DB8
2025-12-25T13:14:20.578934740Z  2025-12-25 13:14:20.578 UTC [72] LOG:  checkpoint starting: time
2025-12-25T13:14:25.776809453Z  2025-12-25 13:14:25.776 UTC [72] LOG:  checkpoint complete: wrote 51 buffers (0.3%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=5.140 s, sync=0.039 s, total=5.199 s; sync files=51, longest=0.009 s, average=0.001 s; distance=69 kB, estimate=238 kB; lsn=0/2105210, redo lsn=0/21051B8
2025-12-25T13:19:20.876806023Z  2025-12-25 13:19:20.876 UTC [72] LOG:  checkpoint starting: time
2025-12-25T13:19:26.904259653Z  2025-12-25 13:19:26.904 UTC [72] LOG:  checkpoint complete: wrote 59 buffers (0.4%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=5.960 s, sync=0.050 s, total=6.028 s; sync files=60, longest=0.002 s, average=0.001 s; distance=52 kB, estimate=219 kB; lsn=0/2112608, redo lsn=0/2112578
2025-12-25T13:24:20.934729988Z  2025-12-25 13:24:20.934 UTC [72] LOG:  checkpoint starting: time
2025-12-25T13:24:27.676914761Z  2025-12-25 13:24:27.676 UTC [72] LOG:  checkpoint complete: wrote 66 buffers (0.4%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=6.663 s, sync=0.064 s, total=6.743 s; sync files=66, longest=0.010 s, average=0.001 s; distance=80 kB, estimate=205 kB; lsn=0/2126608, redo lsn=0/21265B0
2025-12-25T13:29:20.773088279Z  2025-12-25 13:29:20.772 UTC [72] LOG:  checkpoint starting: time
2025-12-25T13:29:21.421884785Z  2025-12-25 13:29:21.421 UTC [72] LOG:  checkpoint complete: wrote 6 buffers (0.0%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.620 s, sync=0.008 s, total=0.649 s; sync files=7, longest=0.002 s, average=0.002 s; distance=10 kB, estimate=186 kB; lsn=0/2128E80, redo lsn=0/2128E28
2025-12-25T13:34:20.522248950Z  2025-12-25 13:34:20.521 UTC [72] LOG:  checkpoint starting: time
2025-12-25T13:34:21.675749113Z  2025-12-25 13:34:21.675 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.121 s, sync=0.011 s, total=1.154 s; sync files=12, longest=0.002 s, average=0.001 s; distance=22 kB, estimate=169 kB; lsn=0/212E820, redo lsn=0/212E7C8
2025-12-25T13:44:20.875941920Z  2025-12-25 13:44:20.875 UTC [72] LOG:  checkpoint starting: time
2025-12-25T13:44:22.031042046Z  2025-12-25 13:44:22.030 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.123 s, sync=0.012 s, total=1.156 s; sync files=12, longest=0.002 s, average=0.001 s; distance=23 kB, estimate=155 kB; lsn=0/2134638, redo lsn=0/21345E0
2025-12-25T13:54:20.230252828Z  2025-12-25 13:54:20.229 UTC [72] LOG:  checkpoint starting: time
2025-12-25T13:54:21.385879408Z  2025-12-25 13:54:21.385 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.123 s, sync=0.013 s, total=1.156 s; sync files=12, longest=0.003 s, average=0.002 s; distance=24 kB, estimate=142 kB; lsn=0/213A8C8, redo lsn=0/213A870
2025-12-25T14:04:20.557175729Z  2025-12-25 14:04:20.556 UTC [72] LOG:  checkpoint starting: time
2025-12-25T14:04:21.714645558Z  2025-12-25 14:04:21.714 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.124 s, sync=0.013 s, total=1.158 s; sync files=12, longest=0.002 s, average=0.001 s; distance=25 kB, estimate=130 kB; lsn=0/2140FD0, redo lsn=0/2140F78
2025-12-25T14:09:20.812991909Z  2025-12-25 14:09:20.812 UTC [72] LOG:  checkpoint starting: time
2025-12-25T14:09:22.576852127Z  2025-12-25 14:09:22.576 UTC [72] LOG:  checkpoint complete: wrote 17 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.726 s, sync=0.017 s, total=1.765 s; sync files=18, longest=0.002 s, average=0.001 s; distance=32 kB, estimate=120 kB; lsn=0/2149200, redo lsn=0/21491A8
2025-12-25T14:14:20.676385283Z  2025-12-25 14:14:20.676 UTC [72] LOG:  checkpoint starting: time
2025-12-25T14:14:21.826058885Z  2025-12-25 14:14:21.825 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.121 s, sync=0.011 s, total=1.150 s; sync files=12, longest=0.002 s, average=0.001 s; distance=29 kB, estimate=111 kB; lsn=0/2150628, redo lsn=0/21505D0
2025-12-25T14:24:20.970235484Z  2025-12-25 14:24:20.969 UTC [72] LOG:  checkpoint starting: time
2025-12-25T14:24:22.118804219Z  2025-12-25 14:24:22.118 UTC [72] LOG:  checkpoint complete: wrote 11 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.120 s, sync=0.011 s, total=1.149 s; sync files=12, longest=0.002 s, average=0.001 s; distance=30 kB, estimate=103 kB; lsn=0/2157EB0, redo lsn=0/2157E58
2025-12-25T14:34:20.315985289Z  2025-12-25 14:34:20.315 UTC [72] LOG:  checkpoint starting: time
2025-12-25T14:34:27.356947982Z  2025-12-25 14:34:27.356 UTC [72] LOG:  checkpoint complete: wrote 69 buffers (0.4%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=6.969 s, sync=0.055 s, total=7.042 s; sync files=70, longest=0.002 s, average=0.001 s; distance=91 kB, estimate=102 kB; lsn=0/216EC00, redo lsn=0/216EB70
2025-12-25T14:39:20.457496302Z  2025-12-25 14:39:20.457 UTC [72] LOG:  checkpoint starting: time
2025-12-25T14:39:26.986208953Z  2025-12-25 14:39:26.985 UTC [72] LOG:  checkpoint complete: wrote 64 buffers (0.4%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=6.460 s, sync=0.051 s, total=6.529 s; sync files=63, longest=0.002 s, average=0.001 s; distance=96 kB, estimate=101 kB; lsn=0/2186DE8, redo lsn=0/2186D90
2025-12-25T14:44:21.086049953Z  2025-12-25 14:44:21.085 UTC [72] LOG:  checkpoint starting: time
2025-12-25T14:44:28.438490630Z  2025-12-25 14:44:28.438 UTC [72] LOG:  checkpoint complete: wrote 72 buffers (0.4%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=7.276 s, sync=0.060 s, total=7.353 s; sync files=72, longest=0.002 s, average=0.001 s; distance=123 kB, estimate=123 kB; lsn=0/21AF978, redo lsn=0/21A5B10
2025-12-25T14:49:21.538201700Z  2025-12-25 14:49:21.537 UTC [72] LOG:  checkpoint starting: time
2025-12-25T14:49:27.457646561Z  2025-12-25 14:49:27.457 UTC [72] LOG:  checkpoint complete: wrote 58 buffers (0.4%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=5.854 s, sync=0.049 s, total=5.920 s; sync files=59, longest=0.003 s, average=0.001 s; distance=84 kB, estimate=119 kB; lsn=0/21BAD38, redo lsn=0/21BACE0
2025-12-25T14:54:21.556380326Z  2025-12-25 14:54:21.556 UTC [72] LOG:  checkpoint starting: time
2025-12-25T14:54:29.180259738Z  2025-12-25 14:54:29.180 UTC [72] LOG:  checkpoint complete: wrote 75 buffers (0.5%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=7.562 s, sync=0.044 s, total=7.624 s; sync files=75, longest=0.009 s, average=0.001 s; distance=135 kB, estimate=135 kB; lsn=0/21EA1F8, redo lsn=0/21DC980
2025-12-25T14:59:21.278287739Z  2025-12-25 14:59:21.277 UTC [72] LOG:  checkpoint starting: time
2025-12-25T14:59:28.931007466Z  2025-12-25 14:59:28.930 UTC [72] LOG:  checkpoint complete: wrote 75 buffers (0.5%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=7.581 s, sync=0.053 s, total=7.653 s; sync files=64, longest=0.002 s, average=0.001 s; distance=207 kB, estimate=207 kB; lsn=0/2210998, redo lsn=0/2210908
2025-12-25T15:04:22.030425576Z  2025-12-25 15:04:22.030 UTC [72] LOG:  checkpoint starting: time
2025-12-25T15:04:28.671019876Z  2025-12-25 15:04:28.670 UTC [72] LOG:  checkpoint complete: wrote 65 buffers (0.4%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=6.559 s, sync=0.063 s, total=6.641 s; sync files=66, longest=0.011 s, average=0.001 s; distance=115 kB, estimate=198 kB; lsn=0/22354F0, redo lsn=0/222D748
2025-12-25T15:09:22.765924214Z  2025-12-25 15:09:22.765 UTC [72] LOG:  checkpoint starting: time
2025-12-25T15:09:32.758646780Z  2025-12-25 15:09:32.758 UTC [72] LOG:  checkpoint complete: wrote 98 buffers (0.6%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=9.888 s, sync=0.086 s, total=9.993 s; sync files=88, longest=0.014 s, average=0.001 s; distance=226 kB, estimate=226 kB; lsn=0/2266040, redo lsn=0/2265FD0
2025-12-25T15:14:22.857957966Z  2025-12-25 15:14:22.857 UTC [72] LOG:  checkpoint starting: time
2025-12-25T15:14:34.368952360Z  2025-12-25 15:14:34.368 UTC [72] LOG:  checkpoint complete: wrote 114 buffers (0.7%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=11.475 s, sync=0.020 s, total=11.511 s; sync files=81, longest=0.001 s, average=0.001 s; distance=207 kB, estimate=224 kB; lsn=0/2299DE8, redo lsn=0/2299D58
2025-12-25T15:19:22.436192778Z  2025-12-25 15:19:22.435 UTC [72] LOG:  checkpoint starting: time
2025-12-25T15:19:43.373353430Z  2025-12-25 15:19:43.373 UTC [72] LOG:  checkpoint complete: wrote 207 buffers (1.3%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=20.887 s, sync=0.029 s, total=20.938 s; sync files=84, longest=0.002 s, average=0.001 s; distance=1663 kB, estimate=1663 kB; lsn=0/2439DE0, redo lsn=0/2439D50
2025-12-25T15:24:22.470141615Z  2025-12-25 15:24:22.469 UTC [72] LOG:  checkpoint starting: time
2025-12-25T15:24:34.228940132Z  2025-12-25 15:24:34.228 UTC [72] LOG:  checkpoint complete: wrote 116 buffers (0.7%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=11.708 s, sync=0.031 s, total=11.759 s; sync files=74, longest=0.002 s, average=0.001 s; distance=568 kB, estimate=1554 kB; lsn=0/24C8188, redo lsn=0/24C80F8
2025-12-25T15:29:22.325891486Z  2025-12-25 15:29:22.325 UTC [72] LOG:  checkpoint starting: time
2025-12-25T15:29:35.620565877Z  2025-12-25 15:29:35.620 UTC [72] LOG:  checkpoint complete: wrote 131 buffers (0.8%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=13.224 s, sync=0.056 s, total=13.295 s; sync files=63, longest=0.002 s, average=0.001 s; distance=940 kB, estimate=1493 kB; lsn=0/25B32D0, redo lsn=0/25B3240
2025-12-25T15:34:22.690866658Z  2025-12-25 15:34:22.690 UTC [72] LOG:  checkpoint starting: time
2025-12-25T15:34:34.495364529Z  2025-12-25 15:34:34.495 UTC [72] LOG:  checkpoint complete: wrote 116 buffers (0.7%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=11.726 s, sync=0.058 s, total=11.805 s; sync files=76, longest=0.001 s, average=0.001 s; distance=828 kB, estimate=1426 kB; lsn=0/2687A68, redo lsn=0/2682270
2025-12-25T15:39:22.579564867Z  2025-12-25 15:39:22.579 UTC [72] LOG:  checkpoint starting: time
2025-12-25T15:39:28.978346949Z  2025-12-25 15:39:28.978 UTC [72] LOG:  checkpoint complete: wrote 63 buffers (0.4%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=6.355 s, sync=0.027 s, total=6.399 s; sync files=33, longest=0.002 s, average=0.001 s; distance=368 kB, estimate=1320 kB; lsn=0/26DE4B8, redo lsn=0/26DE460
2025-12-25T15:44:23.079000322Z  2025-12-25 15:44:23.078 UTC [72] LOG:  checkpoint starting: time
2025-12-25T15:44:24.334686727Z  2025-12-25 15:44:24.334 UTC [72] LOG:  checkpoint complete: wrote 12 buffers (0.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=1.221 s, sync=0.017 s, total=1.256 s; sync files=13, longest=0.004 s, average=0.002 s; distance=36 kB, estimate=1192 kB; lsn=0/26E75E0, redo lsn=0/26E7588
2025-12-25T15:49:23.434545697Z  2025-12-25 15:49:23.434 UTC [72] LOG:  checkpoint starting: time
2025-12-25T15:49:23.771580156Z  2025-12-25 15:49:23.771 UTC [72] LOG:  checkpoint complete: wrote 3 buffers (0.0%), wrote 0 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.315 s, sync=0.004 s, total=0.338 s; sync files=3, longest=0.002 s, average=0.002 s; distance=10 kB, estimate=1074 kB; lsn=0/26EA138, redo lsn=0/26EA0E0
2025-12-25T15:54:23.858103047Z  2025-12-25 15:54:23.857 UTC [72] LOG:  checkpoint starting: time
2025-12-25T15:54:25.108090654Z  2025-12-25 15:54:25.107 UTC [72] PANIC:  could not open file "/var/lib/postgresql/18/docker/global/pg_control": Permission denied
2025-12-25T15:54:25.176037863Z  2025-12-25 15:54:25.174 UTC [1] LOG:  checkpointer process (PID 72) was terminated by signal 6: Aborted
2025-12-25T15:54:25.176068880Z  2025-12-25 15:54:25.174 UTC [1] LOG:  terminating any other active server processes
2025-12-25T15:54:25.177852971Z  2025-12-25 15:54:25.177 UTC [1] LOG:  all server processes terminated; reinitializing
2025-12-25T15:54:25.182436710Z  2025-12-25 15:54:25.182 UTC [1] FATAL:  could not stat data directory "/var/lib/postgresql/18/docker": Permission denied
2025-12-25T15:54:25.182916998Z  2025-12-25 15:54:25.182 UTC [1] LOG:  database system is shut down
2025-12-25T15:54:25.599899141Z  mkdir: cannot create directory ‘/var/lib/postgresql/18’: Permission denied
2025-12-25T15:54:26.123095955Z  mkdir: cannot create directory ‘/var/lib/postgresql/18’: Permission denied


 ls -ln /volume2/docker/paperless-ngx/

drwxrwxrwx 1 1000  10   38 Dec 25 10:26 config
drwxrwxrwx 1 1000  10    0 Dec 25 16:10 consume
drwxrwxrwx 1 1000  10  170 Dec 25 16:34 data
drwx------ 1  999 999    4 Dec 25 10:29 db
drwxrwxrwx 1 1000  10   42 Dec 25 16:10 export
drwxrwxrwx 1 1000  10   38 Dec 25 16:10 media
drwxrwxrwx 1 1000  10    0 Dec 25 10:10 pgdata
drwx------ 1  999 999   16 Dec 25 17:22 redis
drwxrwxrwx 1 1000  10 1216 Dec 25 16:39 trash

999/999 wurde durch den befehl oben geändert.

In meiner Docker-Compose.Yaml ist unter Webserver: USERMAP_UID: 1000 / USERMAP_GID: 10