Re: pg_dump

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "stephen" <mail(at)xesoftware(dot)com(dot)au>
Cc: "'Postgresql'" <pgsql-novice(at)postgresql(dot)org>
Subject: Re: pg_dump
Date: 2007-07-10 16:24:25
Message-ID: 21998.1184084665@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

"stephen" <mail(at)xesoftware(dot)com(dot)au> writes:
> I am trying to run pg_dump from a perl script.

> I do this:

> system("pg_dump -U postgres eventOrganizer");

> and it fires it up but it then wants me to manually enter the password.
> I couldn't find any option to enter the password as part of the call. Is
> there one? Is there any other way to do this?

There is no way to put it on the command line, and you wouldn't want to
use it if there was, because that would expose the password to anyone
able to run "ps". Instead, put the password in a ~/.pgpass file for the
user running the perl script. See
http://www.postgresql.org/docs/8.2/static/libpq-pgpass.html

regards, tom lane

In response to

  • pg_dump at 2007-07-10 15:45:56 from stephen

Browse pgsql-novice by date

  From Date Subject
Next Message Andrej Ricnik-Bay 2007-07-10 18:13:37 Re: pam + PostgreSQL
Previous Message stephen 2007-07-10 15:45:56 pg_dump