Koozali.org: home of the SME Server

Version 6 Beta 3

Mark Coudriet

Version 6 Beta 3
« 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.

Walter Kaan

Re: Version 6 Beta 3
« Reply #1 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