Обсуждение: vacuum and database backup

Поиск
Список
Период
Сортировка

vacuum and database backup

От
Bolotov Pavel
Дата:
Hi

How can i setup vacuum and database backup
from crontab on ubuntu.
The problem is that both programs ask password.

Could you send an example script.

Thanks
Pavel.




____________________________________________________________________________________
Looking for a deal? Find great prices on flights and hotels with Yahoo! FareChase.
http://farechase.yahoo.com/

Re: vacuum and database backup

От
"Scott Marlowe"
Дата:
On 8/21/07, Bolotov Pavel <bpavel@yahoo.com> wrote:
> Hi
>
> How can i setup vacuum and database backup
> from crontab on ubuntu.
> The problem is that both programs ask password.
>
> Could you send an example script.

All you need is a .pgpass file for the account running the backups.
(or trust for that account or identd if it's on the same machine)

Using .pgpass with a line like this:

dbmachinename:5432:dbname:postgres:password

in say, the postgres user's home directory, and set to 0600
permissions, pg_dump could backup the db named dbname on the machine
dbmachinename as the user postgres with the password password.

All that's left is cronning it up.  You might have to set a home dir
in crontab at the top:

 HOME=/home/postgres