tiredofit / docker-db-backup

Backup multiple database types on a scheduled basis with many customizable options
MIT License
886 stars 128 forks source link

[401 Error](CouchDB)Host is not accessible, retrying...∞ #330

Open anonymous-99529 opened 9 months ago

anonymous-99529 commented 9 months ago

Host OS: Synology NAS DSM 7.2.

Issue: Can't access to CouchDB(PostgreSQL backup works fine).

Here is my docker-compose.yml:

version: "3.9"

services:
  couchdb:
    container_name: couchdb
    hostname: couchdb
    image: couchdb
    networks:
      - db
    ports:
      - 5984:5984
    volumes:
      - /volume1/docker/couchdb/data:/opt/couchdb/data
      - /volume1/docker/couchdb/local.ini:/opt/couchdb/etc/local.ini
    environment:
      - COUCHDB_USER=*REDACTED* # enter the desired CouchDB admin username
      - COUCHDB_PASSWORD=*REDACTED* # enter the desired CouchDB admin password
    restart: unless-stopped

  postgres:
    container_name: postgres
    hostname: postgres
    image: postgres:16
    networks:
      - db
    ports:
      - 5432:5432
    volumes:
      - /volume1/docker/postgres:/var/lib/postgresql/data
    environment:
      - TZ=Asia/Seoul
      - POSTGRES_PASSWORD=*REDACTED*
      - POSTGRES_USER=*REDACTED*
      - POSTGRES_DB=*REDACTED*
    restart: unless-stopped

db-backup:
    container_name: db-backup
    image: tiredofit/db-backup
    networks:
      - db
    volumes:
      - /volume1/docker/db-backup:/backup
      #- ./post-script.sh:/assets/custom-scripts/post-script.sh
    environment:
      - TIMEZONE=Asia/Seoul
      - CONTAINER_NAME=db-backup
      - CONTAINER_ENABLE_MONITORING=FALSE
      - DEBUG_MODE=TRUE
      - BACKUP_JOB_CONCURRENCY=2     # Run two jobs at a time
      - DEFAULT_CHECKSUM=NONE        # Don't create checksums
      - DEFAULT_COMPRESSION=ZSTD     # Compress all with ZSTD
      - DEFAULT_COMPRESSION_LEVEL=19
      - DEFAULT_BACKUP_INTERVAL=60   # Backup every 60 minutes
      - DEFAULT_BACKUP_BEGIN=0030    # Start backing up at 00:30
      - DEFAULT_CLEANUP_TIME=420     # Cleanup backups after 7 hours
      - DEFAULT_BACKUP_BLACKOUT_BEGIN=1159
      - DEFAULT_BACKUP_BLACKOUT_END=0001
      - DB01_TYPE=couch
      - DB01_HOST=couchdb
      - DB01_PORT=5984
      - DB01_NAME=ALL
      - DB01_USER=REDACTED
      - DB01_PASS=REDACTED
      - DB02_TYPE=pgsql
      - DB02_HOST=postgres
      - DB02_PORT=5432
      - DB02_NAME=ALL
      - DB02_USER=REDACTED
      - DB02_PASS=REDACTED
    restart: always

networks:
  db:
    external: true

And this is the log:

2024/02/24 23:39:16 | stdout | 2024-02-24.23:39:16 [WARN] /etc/services.available/dbbackup-01/run ** [01-couchdb__ALL] CouchDB Host 'couchdb' is not accessible, retrying.. (15 seconds so far)
-- | -- | --
2024/02/24 23:39:16 | stderr | + set +x
2024/02/24 23:39:16 | stderr | + '[' true = true ']'
2024/02/24 23:39:16 | stderr | + output_off
2024/02/24 23:39:16 | stderr | + '[' '' = yes ']'
2024/02/24 23:39:16 | stderr | + '[' '' = true ']'
2024/02/24 23:39:16 | stderr | + var_true ''
2024/02/24 23:39:16 | stderr | + write_log warn 'CouchDB Host '\''couchdb'\'' is not accessible, retrying.. (15 seconds so far)'
2024/02/24 23:39:16 | stderr | + ((  counter+=5  ))
2024/02/24 23:39:11 | stderr | + sleep 5
2024/02/24 23:39:11 | stderr | + '[' 401 = 200 ']'
2024/02/24 23:39:11 | stderr | + code_received=401
2024/02/24 23:39:11 | stderr | ++ sudo -Eu dbbackup curl -XGET -sSL -o /dev/null -L -w '%{http_code}' couchdb:5984
2024/02/24 23:39:11 | stderr | ++ run_as_user curl -XGET -sSL -o /dev/null -L -w '%{http_code}' couchdb:5984
2024/02/24 23:39:11 | stderr | + '[' 401 '!=' 200 ']'
2024/02/24 23:39:11 | stderr | + '[' '' = yes ']'
2024/02/24 23:39:11 | stderr | + '[' '' = true ']'
2024/02/24 23:39:11 | stderr | + var_true ''
2024/02/24 23:39:11 | stderr | + set -x
2024/02/24 23:39:11 | stderr | + case "$PWD" in
2024/02/24 23:39:11 | stderr | ++ basename ./run
2024/02/24 23:39:11 | stderr | + case "$(basename "$0")" in
2024/02/24 23:39:11 | stderr | + '[' true = true ']'
2024/02/24 23:39:11 | stderr | + output_on
2024/02/24 23:39:11 | stdout | 2024-02-24.23:39:11 [WARN] /etc/services.available/dbbackup-01/run ** [01-couchdb__ALL] CouchDB Host 'couchdb' is not accessible, retrying.. (10 seconds so far)
2024/02/24 23:39:11 | stderr | + set +x
2024/02/24 23:39:11 | stderr | + '[' true = true ']'
2024/02/24 23:39:11 | stderr | + output_off
2024/02/24 23:39:11 | stderr | + '[' '' = yes ']'
2024/02/24 23:39:11 | stderr | + '[' '' = true ']'
2024/02/24 23:39:11 | stderr | + var_true ''
2024/02/24 23:39:11 | stderr | + write_log warn 'CouchDB Host '\''couchdb'\'' is not accessible, retrying.. (10 seconds so far)'
2024/02/24 23:39:11 | stderr | + ((  counter+=5  ))
2024/02/24 23:39:06 | stderr | + sleep 5
2024/02/24 23:39:06 | stderr | + '[' 401 = 200 ']'
2024/02/24 23:39:06 | stderr | + code_received=401
2024/02/24 23:39:06 | stderr | ++ sudo -Eu dbbackup curl -XGET -sSL -o /dev/null -L -w '%{http_code}' couchdb:5984
2024/02/24 23:39:06 | stderr | ++ run_as_user curl -XGET -sSL -o /dev/null -L -w '%{http_code}' couchdb:5984
2024/02/24 23:39:06 | stderr | + '[' 401 '!=' 200 ']'
2024/02/24 23:39:06 | stderr | + '[' '' = yes ']'
2024/02/24 23:39:06 | stderr | + '[' '' = true ']'
2024/02/24 23:39:06 | stderr | + var_true ''
2024/02/24 23:39:06 | stderr | + set -x
2024/02/24 23:39:06 | stderr | + case "$PWD" in
2024/02/24 23:39:06 | stderr | ++ basename ./run
2024/02/24 23:39:06 | stderr | + case "$(basename "$0")" in
2024/02/24 23:39:06 | stderr | + '[' true = true ']'
2024/02/24 23:39:06 | stderr | + output_on
2024/02/24 23:39:06 | stdout | 2024-02-24.23:39:06 [WARN] /etc/services.available/dbbackup-01/run ** [01-couchdb__ALL] CouchDB Host 'couchdb' is not accessible, retrying.. (5 seconds so far)
2024/02/24 23:39:06 | stderr | + set +x
2024/02/24 23:39:06 | stderr | + '[' true = true ']'
2024/02/24 23:39:06 | stderr | + output_off
2024/02/24 23:39:06 | stderr | + '[' '' = yes ']'
2024/02/24 23:39:06 | stderr | + '[' '' = true ']'
2024/02/24 23:39:06 | stderr | + var_true ''
2024/02/24 23:39:06 | stderr | + write_log warn 'CouchDB Host '\''couchdb'\'' is not accessible, retrying.. (5 seconds so far)'
2024/02/24 23:39:06 | stderr | + ((  counter+=5  ))
2024/02/24 23:39:01 | stderr | + sleep 5
2024/02/24 23:39:01 | stderr | + '[' 401 = 200 ']'
2024/02/24 23:39:01 | stderr | + code_received=401
2024/02/24 23:39:01 | stderr | ++ sudo -Eu dbbackup curl -XGET -sSL -o /dev/null -L -w '%{http_code}' couchdb:5984
2024/02/24 23:39:01 | stderr | ++ run_as_user curl -XGET -sSL -o /dev/null -L -w '%{http_code}' couchdb:5984

. . . Repeating endlessly. Getting error code 401 and can't access the host. I believe I have written docker-compose.yml correctly. Or am I missing something? Please let me know what am I missing. I have no idea at all.

ryryonline commented 7 months ago

While not much of a coder myself, I was looking into it and CouchDB requires a login to access the database. The code looks like it isn't passing the username and password to the curl URL to pull data. Just a guess.

mcd92 commented 2 months ago

I believe I'm facing the same issue.

I wanted to test the Notification script, so I purposefully inserted wrong connection details for one of the jobs. The result is that an error never happens - it loops indefinitely trying to connect to the database - therefore not triggering the notification script.

2024-08-30T20:21:03.596316795Z                                                                        ,---.
2024-08-30T20:21:03.596353390Z ,--------.,--.                 ,--.            ,---.    ,--. ,--------.|   |
2024-08-30T20:21:03.596366651Z '--.  .--'`--',--.--. ,---.  ,-|  |     ,---. /  .-'    |  | '--.  .--'|  .'
2024-08-30T20:21:03.596373530Z    |  |   ,--.|  .--'| .-. :' .-. |    | .-. ||  `-,    |  |    |  |   |  |
2024-08-30T20:21:03.596379842Z    |  |   |  ||  |   \   --.\ `-' |    ' '-' '|  .-'    |  |.--.|  |   `--'
2024-08-30T20:21:03.596386306Z    `--'   `--'`--'    `----' `---'      `---' `--'      `--''--'`--'   .--.
2024-08-30T20:21:03.596402646Z                                                                        '--'
2024-08-30T20:21:03.596523779Z Image:  tiredofit/db-backup | Version  4.1.4 Type 'image_changelog' for details
2024-08-30T20:21:03.596544763Z Repository/Documentation: https://github.com/tiredofit/docker-db-backup/
2024-08-30T20:21:03.598836645Z License: MIT | © 2024 Dave Conroy
2024-08-30T20:21:03.598994385Z 
2024-08-30T20:21:03.601055835Z If this image provides you value  - Consider sponsoring my work for continued 
2024-08-30T20:21:03.601074728Z development, timely updates, and feature requests. Commercial support available.
2024-08-30T20:21:03.601082867Z 
2024-08-30T20:21:03.601089339Z                     More Info:  https://www.tiredofit.ca
2024-08-30T20:21:03.601214281Z 
2024-08-30T20:21:03.718312943Z 2024-08-30.20:21:03 [NOTICE] ** [timezone] Timezone: Setting to 'America/Sao_Paulo' from 'Etc/GMT'
2024-08-30T20:21:04.038791565Z 2024-08-30.17:21:04 [NOTICE] ** [scheduling] Container configured for scheduled tasks with 'cron'
2024-08-30T20:21:04.392346718Z 2024-08-30.17:21:04 [NOTICE] ** [messaging] Container configured to route mail via SMTP to 'postfix-relay'
2024-08-30T20:21:05.257841531Z 2024-08-30.17:21:05 [STARTING] ** [scheduling] [1] Starting cron
2024-08-30T20:21:06.706864023Z 2024-08-30.17:21:06 [INFO] ** [01-myserver.com__ALL] Next Backup at 2024-08-30 17:21:06 -03
2024-08-30T20:21:07.716030578Z 2024-08-30.17:21:07 [INFO] ** [02-10.0.0.103__ALL] Next Backup at 2024-08-30 17:21:07 -03
2024-08-30T20:21:07.750720993Z 2024-08-30.17:21:07 [NOTICE] ** [02-10.0.0.103__ALL] Backup concurrency limit reached (1). Waiting for other tasks to finish before backing up.
2024-08-30T20:21:08.703412790Z 2024-08-30.17:21:08 [INFO] ** [03-10.0.0.103__ALL] Next Backup at 2024-08-30 17:21:08 -03
2024-08-30T20:21:08.726500468Z 2024-08-30.17:21:08 [NOTICE] ** [03-10.0.0.103__ALL] Backup concurrency limit reached (1). Waiting for other tasks to finish before backing up.
2024-08-30T20:21:14.835184937Z 2024-08-30.17:21:14 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (5 seconds so far)
2024-08-30T20:21:22.882696810Z 2024-08-30.17:21:22 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (10 seconds so far)
2024-08-30T20:21:30.918731337Z 2024-08-30.17:21:30 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (15 seconds so far)
2024-08-30T20:21:38.953412578Z 2024-08-30.17:21:38 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (20 seconds so far)
2024-08-30T20:21:46.993029946Z 2024-08-30.17:21:46 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (25 seconds so far)
2024-08-30T20:21:55.028883119Z 2024-08-30.17:21:55 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (30 seconds so far)
2024-08-30T20:22:03.065922191Z 2024-08-30.17:22:03 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (35 seconds so far)
2024-08-30T20:22:11.099337668Z 2024-08-30.17:22:11 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (40 seconds so far)
2024-08-30T20:22:19.135114171Z 2024-08-30.17:22:19 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (45 seconds so far)
2024-08-30T20:22:27.169896404Z 2024-08-30.17:22:27 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (50 seconds so far)
2024-08-30T20:22:35.210904955Z 2024-08-30.17:22:35 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (55 seconds so far)
2024-08-30T20:22:43.246374946Z 2024-08-30.17:22:43 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (60 seconds so far)
2024-08-30T20:22:51.279739795Z 2024-08-30.17:22:51 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (65 seconds so far)
2024-08-30T20:22:59.314052257Z 2024-08-30.17:22:59 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (70 seconds so far)
2024-08-30T20:23:07.349269451Z 2024-08-30.17:23:07 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (75 seconds so far)
2024-08-30T20:23:15.384250755Z 2024-08-30.17:23:15 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (80 seconds so far)
2024-08-30T20:23:23.419756315Z 2024-08-30.17:23:23 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (85 seconds so far)
2024-08-30T20:23:31.454671166Z 2024-08-30.17:23:31 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (90 seconds so far)
2024-08-30T20:23:39.489770716Z 2024-08-30.17:23:39 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (95 seconds so far)
2024-08-30T20:23:47.524842071Z 2024-08-30.17:23:47 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (100 seconds so far)
2024-08-30T20:23:55.560341301Z 2024-08-30.17:23:55 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (105 seconds so far)
2024-08-30T20:24:03.595620667Z 2024-08-30.17:24:03 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (110 seconds so far)
2024-08-30T20:24:11.631264291Z 2024-08-30.17:24:11 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (115 seconds so far)
2024-08-30T20:24:19.667316279Z 2024-08-30.17:24:19 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (120 seconds so far)
2024-08-30T20:24:27.702701765Z 2024-08-30.17:24:27 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (125 seconds so far)
2024-08-30T20:24:35.738094211Z 2024-08-30.17:24:35 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (130 seconds so far)
2024-08-30T20:24:43.771770456Z 2024-08-30.17:24:43 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (135 seconds so far)
2024-08-30T20:24:51.806413747Z 2024-08-30.17:24:51 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (140 seconds so far)
2024-08-30T20:24:59.843172617Z 2024-08-30.17:24:59 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (145 seconds so far)
2024-08-30T20:25:07.880567151Z 2024-08-30.17:25:07 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (150 seconds so far)
2024-08-30T20:25:15.915753577Z 2024-08-30.17:25:15 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (155 seconds so far)
2024-08-30T20:25:23.951704682Z 2024-08-30.17:25:23 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (160 seconds so far)
2024-08-30T20:25:31.987668734Z 2024-08-30.17:25:31 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (165 seconds so far)
2024-08-30T20:25:40.022771305Z 2024-08-30.17:25:40 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (170 seconds so far)
2024-08-30T20:25:48.058012703Z 2024-08-30.17:25:48 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (175 seconds so far)
2024-08-30T20:25:56.094188332Z 2024-08-30.17:25:56 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (180 seconds so far)
2024-08-30T20:26:04.129625803Z 2024-08-30.17:26:04 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (185 seconds so far)
2024-08-30T20:26:12.164918342Z 2024-08-30.17:26:12 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (190 seconds so far)
2024-08-30T20:26:20.200185395Z 2024-08-30.17:26:20 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (195 seconds so far)
2024-08-30T20:26:28.234328711Z 2024-08-30.17:26:28 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (200 seconds so far)
2024-08-30T20:26:36.273736320Z 2024-08-30.17:26:36 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (205 seconds so far)
2024-08-30T20:26:44.307714961Z 2024-08-30.17:26:44 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (210 seconds so far)
2024-08-30T20:26:52.343974620Z 2024-08-30.17:26:52 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (215 seconds so far)
2024-08-30T20:27:00.376866666Z 2024-08-30.17:27:00 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (220 seconds so far)
2024-08-30T20:27:08.411068162Z 2024-08-30.17:27:08 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (225 seconds so far)
2024-08-30T20:27:16.446058513Z 2024-08-30.17:27:16 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (230 seconds so far)
2024-08-30T20:27:24.481437614Z 2024-08-30.17:27:24 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (235 seconds so far)
2024-08-30T20:27:32.516020648Z 2024-08-30.17:27:32 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (240 seconds so far)
2024-08-30T20:27:40.550599152Z 2024-08-30.17:27:40 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (245 seconds so far)
2024-08-30T20:27:48.584954112Z 2024-08-30.17:27:48 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (250 seconds so far)
2024-08-30T20:27:56.620356251Z 2024-08-30.17:27:56 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (255 seconds so far)
2024-08-30T20:28:04.654854531Z 2024-08-30.17:28:04 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (260 seconds so far)
2024-08-30T20:28:12.690728516Z 2024-08-30.17:28:12 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (265 seconds so far)
2024-08-30T20:28:20.726663702Z 2024-08-30.17:28:20 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (270 seconds so far)
2024-08-30T20:28:28.761447087Z 2024-08-30.17:28:28 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (275 seconds so far)
2024-08-30T20:28:36.797730074Z 2024-08-30.17:28:36 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (280 seconds so far)
2024-08-30T20:28:44.830605886Z 2024-08-30.17:28:44 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (285 seconds so far)
2024-08-30T20:28:52.868245055Z 2024-08-30.17:28:52 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (290 seconds so far)
2024-08-30T20:29:00.903858624Z 2024-08-30.17:29:00 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (295 seconds so far)
2024-08-30T20:29:08.941299562Z 2024-08-30.17:29:08 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (300 seconds so far)
2024-08-30T20:29:16.976739984Z 2024-08-30.17:29:16 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (305 seconds so far)
2024-08-30T20:29:25.009454673Z 2024-08-30.17:29:25 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (310 seconds so far)
2024-08-30T20:29:33.045504427Z 2024-08-30.17:29:33 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (315 seconds so far)
2024-08-30T20:29:41.080378538Z 2024-08-30.17:29:41 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (320 seconds so far)
2024-08-30T20:29:49.115414600Z 2024-08-30.17:29:49 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (325 seconds so far)
2024-08-30T20:29:57.148533837Z 2024-08-30.17:29:57 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (330 seconds so far)
2024-08-30T20:30:05.182726140Z 2024-08-30.17:30:05 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (335 seconds so far)
2024-08-30T20:30:13.239114481Z 2024-08-30.17:30:13 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (340 seconds so far)
2024-08-30T20:30:21.274191424Z 2024-08-30.17:30:21 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (345 seconds so far)
2024-08-30T20:30:29.308786824Z 2024-08-30.17:30:29 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (350 seconds so far)
2024-08-30T20:30:37.343422892Z 2024-08-30.17:30:37 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (355 seconds so far)
2024-08-30T20:30:45.378158869Z 2024-08-30.17:30:45 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (360 seconds so far)
2024-08-30T20:30:53.411285184Z 2024-08-30.17:30:53 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (365 seconds so far)
2024-08-30T20:31:01.446355549Z 2024-08-30.17:31:01 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (370 seconds so far)
2024-08-30T20:31:09.481860365Z 2024-08-30.17:31:09 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (375 seconds so far)
2024-08-30T20:31:17.515694078Z 2024-08-30.17:31:17 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (380 seconds so far)
2024-08-30T20:31:25.549368068Z 2024-08-30.17:31:25 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (385 seconds so far)
2024-08-30T20:31:33.583839500Z 2024-08-30.17:31:33 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (390 seconds so far)
2024-08-30T20:31:41.618674084Z 2024-08-30.17:31:41 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (395 seconds so far)
2024-08-30T20:31:49.656376651Z 2024-08-30.17:31:49 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (400 seconds so far)
2024-08-30T20:31:57.693672533Z 2024-08-30.17:31:57 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (405 seconds so far)
2024-08-30T20:32:05.728792535Z 2024-08-30.17:32:05 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (410 seconds so far)
2024-08-30T20:32:13.762956511Z 2024-08-30.17:32:13 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (415 seconds so far)
2024-08-30T20:32:21.799166561Z 2024-08-30.17:32:21 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (420 seconds so far)
2024-08-30T20:32:29.831933728Z 2024-08-30.17:32:29 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (425 seconds so far)
2024-08-30T20:32:37.867919267Z 2024-08-30.17:32:37 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (430 seconds so far)
2024-08-30T20:32:45.902706672Z 2024-08-30.17:32:45 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (435 seconds so far)
2024-08-30T20:32:53.937785332Z 2024-08-30.17:32:53 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (440 seconds so far)
2024-08-30T20:33:01.974042890Z 2024-08-30.17:33:01 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (445 seconds so far)
2024-08-30T20:33:10.008914018Z 2024-08-30.17:33:10 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (450 seconds so far)
2024-08-30T20:33:18.044321493Z 2024-08-30.17:33:18 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (455 seconds so far)
2024-08-30T20:33:26.083818912Z 2024-08-30.17:33:26 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (460 seconds so far)
2024-08-30T20:33:34.119960877Z 2024-08-30.17:33:34 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (465 seconds so far)
2024-08-30T20:33:42.155098253Z 2024-08-30.17:33:42 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (470 seconds so far)
2024-08-30T20:33:50.190439220Z 2024-08-30.17:33:50 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (475 seconds so far)
2024-08-30T20:33:58.225454936Z 2024-08-30.17:33:58 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (480 seconds so far)
2024-08-30T20:34:06.261897367Z 2024-08-30.17:34:06 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (485 seconds so far)
2024-08-30T20:34:14.294682997Z 2024-08-30.17:34:14 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (490 seconds so far)
2024-08-30T20:34:22.333408301Z 2024-08-30.17:34:22 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (495 seconds so far)
2024-08-30T20:34:30.367385364Z 2024-08-30.17:34:30 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (500 seconds so far)
2024-08-30T20:34:38.401555770Z 2024-08-30.17:34:38 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (505 seconds so far)
2024-08-30T20:34:46.435943705Z 2024-08-30.17:34:46 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (510 seconds so far)
2024-08-30T20:34:54.471532389Z 2024-08-30.17:34:54 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (515 seconds so far)
2024-08-30T20:35:02.507633769Z 2024-08-30.17:35:02 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (520 seconds so far)
2024-08-30T20:35:10.542877896Z 2024-08-30.17:35:10 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (525 seconds so far)
2024-08-30T20:35:18.578573911Z 2024-08-30.17:35:18 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (530 seconds so far)
2024-08-30T20:35:26.613363858Z 2024-08-30.17:35:26 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (535 seconds so far)
2024-08-30T20:35:34.647742581Z 2024-08-30.17:35:34 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (540 seconds so far)
2024-08-30T20:35:42.681984070Z 2024-08-30.17:35:42 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (545 seconds so far)
2024-08-30T20:35:50.716342413Z 2024-08-30.17:35:50 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (550 seconds so far)
2024-08-30T20:35:58.751100547Z 2024-08-30.17:35:58 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (555 seconds so far)
2024-08-30T20:36:06.784779471Z 2024-08-30.17:36:06 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (560 seconds so far)
2024-08-30T20:36:14.818556631Z 2024-08-30.17:36:14 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (565 seconds so far)
2024-08-30T20:36:22.852900743Z 2024-08-30.17:36:22 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (570 seconds so far)
2024-08-30T20:36:30.890100336Z 2024-08-30.17:36:30 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (575 seconds so far)
2024-08-30T20:36:38.925155323Z 2024-08-30.17:36:38 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (580 seconds so far)
2024-08-30T20:36:46.960119914Z 2024-08-30.17:36:46 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (585 seconds so far)
2024-08-30T20:36:54.993786264Z 2024-08-30.17:36:54 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (590 seconds so far)
2024-08-30T20:37:03.028334780Z 2024-08-30.17:37:03 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (595 seconds so far)
2024-08-30T20:37:11.062798761Z 2024-08-30.17:37:11 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (600 seconds so far)
2024-08-30T20:37:19.098183725Z 2024-08-30.17:37:19 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (605 seconds so far)
2024-08-30T20:37:27.132855484Z 2024-08-30.17:37:27 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (610 seconds so far)
2024-08-30T20:37:35.168372458Z 2024-08-30.17:37:35 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (615 seconds so far)
2024-08-30T20:37:43.203515606Z 2024-08-30.17:37:43 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (620 seconds so far)
2024-08-30T20:37:51.239568618Z 2024-08-30.17:37:51 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (625 seconds so far)
2024-08-30T20:37:59.277215329Z 2024-08-30.17:37:59 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (630 seconds so far)
2024-08-30T20:38:07.312845191Z 2024-08-30.17:38:07 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (635 seconds so far)
2024-08-30T20:38:15.349696628Z 2024-08-30.17:38:15 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (640 seconds so far)
2024-08-30T20:38:23.386555580Z 2024-08-30.17:38:23 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (645 seconds so far)
2024-08-30T20:38:31.420835644Z 2024-08-30.17:38:31 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (650 seconds so far)
2024-08-30T20:38:39.455759058Z 2024-08-30.17:38:39 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (655 seconds so far)
2024-08-30T20:38:47.491459507Z 2024-08-30.17:38:47 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (660 seconds so far)
2024-08-30T20:38:55.526499795Z 2024-08-30.17:38:55 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (665 seconds so far)
2024-08-30T20:39:03.560898061Z 2024-08-30.17:39:03 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (670 seconds so far)
2024-08-30T20:39:11.595898957Z 2024-08-30.17:39:11 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (675 seconds so far)
2024-08-30T20:39:19.631257446Z 2024-08-30.17:39:19 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (680 seconds so far)
2024-08-30T20:39:27.665351306Z 2024-08-30.17:39:27 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (685 seconds so far)
2024-08-30T20:39:35.698563392Z 2024-08-30.17:39:35 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (690 seconds so far)
2024-08-30T20:39:43.733633798Z 2024-08-30.17:39:43 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (695 seconds so far)
2024-08-30T20:39:51.766688533Z 2024-08-30.17:39:51 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (700 seconds so far)
2024-08-30T20:39:59.800759671Z 2024-08-30.17:39:59 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (705 seconds so far)
2024-08-30T20:40:07.835452483Z 2024-08-30.17:40:07 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (710 seconds so far)
2024-08-30T20:40:15.869397585Z 2024-08-30.17:40:15 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (715 seconds so far)
2024-08-30T20:40:23.903863337Z 2024-08-30.17:40:23 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (720 seconds so far)
2024-08-30T20:40:31.938416793Z 2024-08-30.17:40:31 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (725 seconds so far)
2024-08-30T20:40:39.972936963Z 2024-08-30.17:40:39 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (730 seconds so far)
2024-08-30T20:40:48.009882155Z 2024-08-30.17:40:48 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (735 seconds so far)
2024-08-30T20:40:56.043582519Z 2024-08-30.17:40:56 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (740 seconds so far)
2024-08-30T20:41:04.078606665Z 2024-08-30.17:41:04 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (745 seconds so far)
2024-08-30T20:41:12.113417824Z 2024-08-30.17:41:12 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (750 seconds so far)
2024-08-30T20:41:20.147758083Z 2024-08-30.17:41:20 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (755 seconds so far)
2024-08-30T20:41:28.181377430Z 2024-08-30.17:41:28 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (760 seconds so far)
2024-08-30T20:41:36.215881284Z 2024-08-30.17:41:36 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (765 seconds so far)
2024-08-30T20:41:44.251323599Z 2024-08-30.17:41:44 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (770 seconds so far)
2024-08-30T20:41:52.286762461Z 2024-08-30.17:41:52 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (775 seconds so far)
2024-08-30T20:42:00.322346984Z 2024-08-30.17:42:00 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (780 seconds so far)
2024-08-30T20:42:08.356028637Z 2024-08-30.17:42:08 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (785 seconds so far)
2024-08-30T20:42:16.391843831Z 2024-08-30.17:42:16 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (790 seconds so far)
2024-08-30T20:42:24.427305383Z 2024-08-30.17:42:24 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (795 seconds so far)
2024-08-30T20:42:32.461361759Z 2024-08-30.17:42:32 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (800 seconds so far)
2024-08-30T20:42:40.495186385Z 2024-08-30.17:42:40 [WARN] ** [01-myserver.com__ALL] Postgres Host 'myserver.com' is not accessible, retrying.. (805 seconds so far)