-----Original Message----- From: zope-admin@zope.org [mailto:zope-admin@zope.org]On Behalf Of sean.upton@uniontrib.com Sent: Thursday, November 14, 2002 12:25 PM To: Chinku_Simon@infosys.com; zope@zope.org Subject: RE: [Zope] Regarding ZOPE backup procedure
Also worth considering: figure out a way to back up your content in a format other than just backing up your ZODB (serialize it and download it via FTP or something). Consider some way to serialize your CMF content into something like plain-text files so that you not only have a backup of your database, but also a neutral (archival) backup of your content as well.
For backup of your ZODB, consider use of DirectoryStorage.
I would suggest you never back up with FTP. FTP generally does not present enough metadata to even begin to reassemble a site. For instance, folder properties and SQL method connection data are not in the FTP format. I imagine you would lose all security information as well. FTP is intended primarly for editing object bodies. Otherwise I agrew with Sean. If you are super lazy, you might also want to consider setting up a zsyncer as a quick & ditry backup solution. ZSyncer isn't designed for this purpose but it could be used in this way. This would also let you swap the backup server pretty quickly, though not automatically.