postgres | The files belonging to this database system will be owned by user "postgres". postgres | This user must also own the server process. postgres | postgres | The database cluster will be initialized with locale "en_US.utf8". postgres | The default database encoding has accordingly been set to "UTF8". postgres | The default text search configuration will be set to "english". postgres | postgres | Data page checksums are disabled. postgres | postgres | fixing permissions on existing directory /var/lib/postgresql/data ... ok postgres | creating subdirectories ... ok postgres | selecting dynamic shared memory implementation ... posix postgres | selecting default "max_connections" ... 100 postgres | selecting default "shared_buffers" ... 128MB postgres | selecting default time zone ... Etc/UTC postgres | creating configuration files ... ok postgres | running bootstrap script ... ok postgres | performing post-bootstrap initialization ... ok postgres | syncing data to disk ... ok postgres | postgres | postgres | Success. You can now start the database server using: postgres | postgres | pg_ctl -D /var/lib/postgresql/data -l logfile start postgres | postgres | initdb: warning: enabling "trust" authentication for local connections postgres | 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. postgres | waiting for server to start....2026-05-13 11:44:03.111 UTC [47] LOG: starting PostgreSQL 17.7 (Debian 17.7-3.pgdg13+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 14.2.0-19) 14.2.0, 64-bit postgres | 2026-05-13 11:44:03.114 UTC [47] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" postgres | 2026-05-13 11:44:03.122 UTC [50] LOG: database system was shut down at 2026-05-13 11:44:02 UTC postgres | 2026-05-13 11:44:03.134 UTC [47] LOG: database system is ready to accept connections postgres | done postgres | server started postgres | #!/bin/bash -xv postgres | # Copyright (C) 2022, 2024 Nordix Foundation. All rights reserved postgres | # postgres | # Licensed under the Apache License, Version 2.0 (the "License"); postgres | # you may not use this file except in compliance with the License. postgres | # You may obtain a copy of the License at postgres | # postgres | # http://www.apache.org/licenses/LICENSE-2.0 postgres | # postgres | # Unless required by applicable law or agreed to in writing, software postgres | # distributed under the License is distributed on an "AS IS" BASIS, postgres | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. postgres | # See the License for the specific language governing permissions and postgres | # limitations under the License. postgres | postgres | psql -U postgres -d postgres --command "CREATE USER ${PGSQL_USER} WITH PASSWORD '${PGSQL_PASSWORD}';" postgres | + psql -U postgres -d postgres --command 'CREATE USER policy_user WITH PASSWORD '\''policy_user'\'';' postgres | postgres | /usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/db-pg.conf postgres | postgres | /usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/db-pg.sh postgres | CREATE ROLE postgres | postgres | for db in migration pooling policyadmin policyclamp operationshistory clampacm postgres | do postgres | psql -U postgres -d postgres --command "CREATE DATABASE ${db};" postgres | psql -U postgres -d postgres --command "ALTER DATABASE ${db} OWNER TO ${PGSQL_USER} ;" postgres | psql -U postgres -d postgres --command "GRANT ALL PRIVILEGES ON DATABASE ${db} TO ${PGSQL_USER} ;" postgres | done postgres | + for db in migration pooling policyadmin policyclamp operationshistory clampacm postgres | + psql -U postgres -d postgres --command 'CREATE DATABASE migration;' postgres | CREATE DATABASE postgres | + psql -U postgres -d postgres --command 'ALTER DATABASE migration OWNER TO policy_user ;' postgres | ALTER DATABASE postgres | + psql -U postgres -d postgres --command 'GRANT ALL PRIVILEGES ON DATABASE migration TO policy_user ;' postgres | + for db in migration pooling policyadmin policyclamp operationshistory clampacm postgres | + psql -U postgres -d postgres --command 'CREATE DATABASE pooling;' postgres | GRANT postgres | CREATE DATABASE postgres | + psql -U postgres -d postgres --command 'ALTER DATABASE pooling OWNER TO policy_user ;' postgres | ALTER DATABASE postgres | + psql -U postgres -d postgres --command 'GRANT ALL PRIVILEGES ON DATABASE pooling TO policy_user ;' postgres | GRANT postgres | + for db in migration pooling policyadmin policyclamp operationshistory clampacm postgres | + psql -U postgres -d postgres --command 'CREATE DATABASE policyadmin;' postgres | CREATE DATABASE postgres | + psql -U postgres -d postgres --command 'ALTER DATABASE policyadmin OWNER TO policy_user ;' postgres | ALTER DATABASE postgres | + psql -U postgres -d postgres --command 'GRANT ALL PRIVILEGES ON DATABASE policyadmin TO policy_user ;' postgres | GRANT postgres | + for db in migration pooling policyadmin policyclamp operationshistory clampacm postgres | + psql -U postgres -d postgres --command 'CREATE DATABASE policyclamp;' postgres | CREATE DATABASE postgres | + psql -U postgres -d postgres --command 'ALTER DATABASE policyclamp OWNER TO policy_user ;' postgres | ALTER DATABASE postgres | + psql -U postgres -d postgres --command 'GRANT ALL PRIVILEGES ON DATABASE policyclamp TO policy_user ;' postgres | GRANT postgres | + for db in migration pooling policyadmin policyclamp operationshistory clampacm postgres | + psql -U postgres -d postgres --command 'CREATE DATABASE operationshistory;' postgres | CREATE DATABASE postgres | + psql -U postgres -d postgres --command 'ALTER DATABASE operationshistory OWNER TO policy_user ;' postgres | ALTER DATABASE postgres | + psql -U postgres -d postgres --command 'GRANT ALL PRIVILEGES ON DATABASE operationshistory TO policy_user ;' postgres | + for db in migration pooling policyadmin policyclamp operationshistory clampacm postgres | + psql -U postgres -d postgres --command 'CREATE DATABASE clampacm;' postgres | GRANT postgres | CREATE DATABASE postgres | + psql -U postgres -d postgres --command 'ALTER DATABASE clampacm OWNER TO policy_user ;' postgres | ALTER DATABASE postgres | + psql -U postgres -d postgres --command 'GRANT ALL PRIVILEGES ON DATABASE clampacm TO policy_user ;' postgres | GRANT postgres | postgres | 2026-05-13 11:44:04.556 UTC [47] LOG: received fast shutdown request postgres | waiting for server to shut down....2026-05-13 11:44:04.557 UTC [47] LOG: aborting any active transactions postgres | 2026-05-13 11:44:04.561 UTC [47] LOG: background worker "logical replication launcher" (PID 53) exited with exit code 1 postgres | 2026-05-13 11:44:04.561 UTC [48] LOG: shutting down postgres | 2026-05-13 11:44:04.563 UTC [48] LOG: checkpoint starting: shutdown immediate postgres | 2026-05-13 11:44:05.383 UTC [48] LOG: checkpoint complete: wrote 5529 buffers (33.7%); 0 WAL file(s) added, 0 removed, 1 recycled; write=0.575 s, sync=0.236 s, total=0.823 s; sync files=1788, longest=0.004 s, average=0.001 s; distance=25541 kB, estimate=25541 kB; lsn=0/2DDEC68, redo lsn=0/2DDEC68 postgres | 2026-05-13 11:44:05.394 UTC [47] LOG: database system is shut down postgres | done postgres | server stopped postgres | postgres | PostgreSQL init process complete; ready for start up. postgres | postgres | 2026-05-13 11:44:05.485 UTC [1] LOG: starting PostgreSQL 17.7 (Debian 17.7-3.pgdg13+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 14.2.0-19) 14.2.0, 64-bit postgres | 2026-05-13 11:44:05.485 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 postgres | 2026-05-13 11:44:05.485 UTC [1] LOG: listening on IPv6 address "::", port 5432 postgres | 2026-05-13 11:44:05.490 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" postgres | 2026-05-13 11:44:05.501 UTC [100] LOG: database system was shut down at 2026-05-13 11:44:05 UTC postgres | 2026-05-13 11:44:05.510 UTC [1] LOG: database system is ready to accept connections postgres | 2026-05-13 11:46:17.115 UTC [132] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:46:17.115 UTC [132] DETAIL: Key (identificationid)=(dd36aaa4-580f-4193-a52b-37c3a955b11a) already exists. postgres | 2026-05-13 11:46:17.115 UTC [132] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3) postgres | 2026-05-13 11:46:27.954 UTC [132] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:46:27.954 UTC [132] DETAIL: Key (identificationid)=(dd36aaa4-580f-4193-a52b-37c3a955b11a) already exists. postgres | 2026-05-13 11:46:27.954 UTC [132] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3) postgres | 2026-05-13 11:46:44.440 UTC [138] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:46:44.440 UTC [138] DETAIL: Key (identificationid)=(6c1cf107-a2ca-4485-8129-02f9fae64d64) already exists. postgres | 2026-05-13 11:46:44.440 UTC [138] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3) postgres | 2026-05-13 11:46:50.419 UTC [127] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:46:50.419 UTC [127] DETAIL: Key (identificationid)=(dd36aaa4-580f-4193-a52b-37c3a955b11a) already exists. postgres | 2026-05-13 11:46:50.419 UTC [127] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3) postgres | 2026-05-13 11:46:50.505 UTC [127] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:46:50.505 UTC [127] DETAIL: Key (identificationid)=(dd36aaa4-580f-4193-a52b-37c3a955b11a) already exists. postgres | 2026-05-13 11:46:50.505 UTC [127] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3) postgres | 2026-05-13 11:46:55.807 UTC [127] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:46:55.807 UTC [127] DETAIL: Key (identificationid)=(dd36aaa4-580f-4193-a52b-37c3a955b11a) already exists. postgres | 2026-05-13 11:46:55.807 UTC [127] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3) postgres | 2026-05-13 11:49:05.591 UTC [98] LOG: checkpoint starting: time postgres | 2026-05-13 11:49:29.471 UTC [98] LOG: checkpoint complete: wrote 241 buffers (1.5%); 0 WAL file(s) added, 0 removed, 0 recycled; write=23.862 s, sync=0.010 s, total=23.881 s; sync files=131, longest=0.002 s, average=0.001 s; distance=1331 kB, estimate=1331 kB; lsn=0/2F2BB70, redo lsn=0/2F2BAE0 postgres | 2026-05-13 11:50:18.611 UTC [128] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:50:18.611 UTC [128] DETAIL: Key (identificationid)=(d12b1272-42b9-4886-8725-e0a837600756) already exists. postgres | 2026-05-13 11:50:18.611 UTC [128] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3) postgres | 2026-05-13 11:50:23.959 UTC [139] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:50:23.959 UTC [139] DETAIL: Key (identificationid)=(d12b1272-42b9-4886-8725-e0a837600756) already exists. postgres | 2026-05-13 11:50:23.959 UTC [139] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3) postgres | 2026-05-13 11:51:08.079 UTC [128] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:51:08.079 UTC [128] DETAIL: Key (identificationid)=(1a133b5c-3a69-4639-b2bb-308b86030e21) already exists. postgres | 2026-05-13 11:51:08.079 UTC [128] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3) postgres | 2026-05-13 11:51:41.922 UTC [139] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:51:41.922 UTC [139] DETAIL: Key (identificationid)=(1a133b5c-3a69-4639-b2bb-308b86030e21) already exists. postgres | 2026-05-13 11:51:41.922 UTC [139] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3) postgres | 2026-05-13 11:51:42.072 UTC [128] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:51:42.072 UTC [128] DETAIL: Key (identificationid)=(1a133b5c-3a69-4639-b2bb-308b86030e21) already exists. postgres | 2026-05-13 11:51:42.072 UTC [128] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3) postgres | 2026-05-13 11:51:47.384 UTC [128] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:51:47.384 UTC [128] DETAIL: Key (identificationid)=(1a133b5c-3a69-4639-b2bb-308b86030e21) already exists. postgres | 2026-05-13 11:51:47.384 UTC [128] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3) postgres | 2026-05-13 11:51:58.176 UTC [128] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:51:58.176 UTC [128] DETAIL: Key (identificationid)=(411da50f-a300-493f-bced-e92d54d9d1bb) already exists. postgres | 2026-05-13 11:51:58.176 UTC [128] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3) postgres | 2026-05-13 11:51:58.250 UTC [128] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:51:58.250 UTC [128] DETAIL: Key (identificationid)=(411da50f-a300-493f-bced-e92d54d9d1bb) already exists. postgres | 2026-05-13 11:51:58.250 UTC [128] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3) postgres | 2026-05-13 11:52:04.386 UTC [139] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:52:04.386 UTC [139] DETAIL: Key (identificationid)=(411da50f-a300-493f-bced-e92d54d9d1bb) already exists. postgres | 2026-05-13 11:52:04.386 UTC [139] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3) postgres | 2026-05-13 11:52:26.760 UTC [139] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:52:26.760 UTC [139] DETAIL: Key (identificationid)=(064ceeb1-93c9-4d31-898d-ae0a863a8473) already exists. postgres | 2026-05-13 11:52:26.760 UTC [139] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3) postgres | 2026-05-13 11:52:32.193 UTC [128] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:52:32.193 UTC [128] DETAIL: Key (identificationid)=(064ceeb1-93c9-4d31-898d-ae0a863a8473) already exists. postgres | 2026-05-13 11:52:32.193 UTC [128] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3) postgres | 2026-05-13 11:52:32.835 UTC [139] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:52:32.835 UTC [139] DETAIL: Key (identificationid)=(064ceeb1-93c9-4d31-898d-ae0a863a8473) already exists. postgres | 2026-05-13 11:52:32.835 UTC [139] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3) postgres | 2026-05-13 11:52:38.157 UTC [139] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:52:38.157 UTC [139] DETAIL: Key (identificationid)=(064ceeb1-93c9-4d31-898d-ae0a863a8473) already exists. postgres | 2026-05-13 11:52:38.157 UTC [139] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3) postgres | 2026-05-13 11:52:54.677 UTC [128] ERROR: duplicate key value violates unique constraint "messagejob_identificationid_index" postgres | 2026-05-13 11:52:54.677 UTC [128] DETAIL: Key (identificationid)=(7428aaef-72ec-4607-92c5-a379677ba593) already exists. postgres | 2026-05-13 11:52:54.677 UTC [128] STATEMENT: insert into MessageJob (identificationId,jobStarted,jobId) values ($1,$2,$3)