mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
Failed backup #396
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @boxofammo on 11/20/2025
Hi,
I'm trying to make backup of database on external host.
But I have got an erorr:
PostgreSQL authentication failed. Check username and password. stderr: pg_dump: error: connection to server at "192.168.100.100", port 5432 failed: FATAL: password authentication failed for user "backup" password retrieved from file "/tmp/pgpass2092618990/.pgpass"When I read docker logs, I see that app is trying to make backup with
--no-passwordpgBin=/usr/lib/postgresql/16/bin/pg_dump args="[-Fc --no-password -h 192.168.100.100 -p 5432 -U backup -d database --verbose --compress=zstd:5]"while password is defined in backup config.
I have also tried to run backup manually inside container but without
--no-passwordand it works.Any solution?
Regards