I created postgres db, import backup, now I want to make new backup from postgres db. This is commands, I had used:
createdb -U user dbname
psql -U user -f "C:\Program Files\PostgreSQL\9.2\bin\import\import.backup" dbname
pg_dump -U user -f "C:\Program Files\PostgreSQL\9.2\bin\backups\bobd.backup" dbname
After last command I get
pg_dump: [archiver (db)] connection to database "dbname" failed: FATAL: password
authentication failed for user "postgres"
How to fix it? I use the same password for importing db and making backup, why for first case it was ok and for second not?
After modifying file pg_hba.conf (change md5 on trusted) I get error
pg_dump: [archiver] could not open output file "C:\Program Files\PostgreSQL\9.2\ bin\backups\bobd.backup": Permission denied
pg_dumpprompt for a password? – Quassnoi Jan 15 at 12:50postgres? – Quassnoi Jan 15 at 13:05