I am trying to dump the database in my local system by using the command :
pg_restore --host=localhost --port=5432 --dbname=dev_db --no-owner --no-privileges db_dump_new.backup
but I am getting the error :
pg_restore: [archiver] input file is too short (read 0, expected 5)
What am I doing wrong?
I encountered the same error. In my case I had simply neglected to specify the backup file at the end of the command.