Koozali.org: home of the SME Server

Legacy Forums => General Discussion (Legacy) => Topic started by: Mark Coudriet on October 22, 2003, 07:34:08 PM

Title: Version 6 Beta 3
Post by: Mark Coudriet on October 22, 2003, 07:34:08 PM
Does anyone know how to customize the backup process for this version?

I'm trying to backup my postgreSQL, but it is not working.
I used the MySQL backup routine as a guide.

If anyone has any tips, pointers, answers, I would be indebted.
Title: Re: Version 6 Beta 3
Post by: Walter Kaan on October 29, 2003, 07:26:40 AM
Hi Mark,

I've been just using cron to do a dump prior to the backup.

su postgres
crontab -e (to edit the crontab)



0 18 * * 1-5 /usr/bin/pg_dumpall > /home/pgsql/dump/pgsqlbackup.sql

That has my postgres nicely backed up.

Hope it helps