
Thank you for your answer, but is it possible to OTRS internally ? I saw that there were folders and files of cron ... Benoit DAVAUT -----Original Message----- From: Nils Breunese (Lemonbit) [mailto:nils@lemonbit.nl] Sent: mardi 25 mars 2008 14:18 To: User questions and discussions about OTRS.org Subject: Re: [otrs] Backup MySQL Cron DAVAUT Benoit wrote:
I have a question concerning database backup. I want a weekly backup with a cron, but I don't know where integrate my backup script (shell).
Do you have an idea ?
The Linux distributions that we use have /etc/cron.weekly, if you have that you could place your script in there (or create a symlink) to have it run weekly as root. See 'man crontab' for more info on crontabs. Nils Breunese._______________________________________________ OTRS mailing list: otrs - Webpage: http://otrs.org/ Archive: http://lists.otrs.org/pipermail/otrs To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs Support or consulting for your OTRS system? =http://www.otrs.com/

Op 25 mrt 2008, om 14:27 heeft DAVAUT Benoit het volgende geschreven:
Thank you for your answer, but is it possible to OTRS internally ? I saw that there were folders and files of cron ...
The OTRS user run some cronjobs, yes. But they aren't any more 'internal' than any other cronjobs as far as I know. Nils Breunese.

You can configure a weekly mysql backup with cron #crontab -e And insert the following command: 30 3 * * 1 mysqldump -uroot -pyourpassword --all-databases | gzip > backup.sql.gz This command would backup your database to /root every Monday at 3:30.
participants (3)
-
DAVAUT Benoit
-
Nils Breunese (Lemonbit)
-
Simon Pearce