A shot in the dark, is it possible that the a dump be limited is size to a maximum set in the configuration ? If 2k is the default, the it’s quite small
Hello Tim,
if you omit the -u postgres (or another user within postgres with the needed rights) postgre uses the logged in (windows/linux/mac) user.
The password is not needed if you set the method in pb_hba.conf to ‘trust’.
This is not really recommended. If you want to set it I would only allow ‘localhost’ or better ‘127.0.0.1/32’ like:
# IPv4 local connections:
host all all 127.0.0.1/32 trust
or even
# IPv4 local connections:
host 26455462 all 127.0.0.1/32 trust
There you setup your connections to the server (authorization, types, granularity, etc). Read more here:
Using local instead of host (as I told before) will use IPC (UDS) locally avoiding some network (TCP) intercomm attacks via TCP on exposed users, and it’s a little bit faster. Allows more isolation, allows hiding and bypassing passwords as you desired.
There is too much to be understood, the manual link is above.