I have set up Postgres and want to use
pg_dump -Fc mydb > dump.db
to copy the content of my db into a file. pg_dump is asking e for the System Users password, which does not work. I have never asked Postgres to use my system user as the default user. I'd be incredibly happy with the default user:postgres password:postgres, but Postgresql is making things hard for me. Any help is greatly appreciated. I do not need the system user in my pg database
pg_dump -U postgres ...