Backing up (and restoring) a Plone instance

前端 未结 3 1879
忘了有多久
忘了有多久 2020-12-22 01:58

I have a Plone installation in my home directory under Linux. ~/Plone. This was made from a default distribution of Plone from its website. So Plone compiled ow

相关标签:
3条回答
  • 2020-12-22 01:58

    Beautiful concise statement from Andreas Jung:

    Yes, you can not get a consistent snapshot of both the blob storage and the Data.fs. From the consistency point of view: using blob storage + Data.fs is broken-by-design :)

    David Glick adds:

    If you copy the Data.fs and then rsync the blobstorage, and make sure that the db doesn't get packed while that's happening, the backup should be fine. You may end up with some extra blobs that are not referenced by the Data.fs, but that's no big deal.

    (From the thread at http://plone.293351.n2.nabble.com/question-about-using-repozo-and-blob-storage-td5016465.html )

    The same goes for FileSystemStorage.

    0 讨论(0)
  • 2020-12-22 02:08

    Plone includes "repoze" which you can use for incremental backups.

    0 讨论(0)
  • 2020-12-22 02:21

    The only directory that normally contains variable data is the var/ directory (data, logfiles). parts/* will be re-generated, for instance.

    And even simpler, normally you only need to backup the var/filestorage/Data.fs file: that one contains your "ZODB" database with all your plone data. If you have a brand new plone, there also might be a var/blobstorage/ directory for storing big files (pdf, mp3, etc): back that one up as well.

    Restoring in a new instance just means copying the Data.fs (and possibly the blobstorage files). It doesn't matter if the instance is newer or on the server or so. I regularly copy my server's Data.fs to my local harddisk for easier testing.

    Two big warnings:

    • If I say "just back up the Data.fs file", I'm assuming you can rebuild your instance, especially that you can get hold of any add-on products you installed. Basically: use that buildout.cfg (assuming a recent plone version) and back that one config file up as well.

    • "Copying Data.fs": better use the bin/repozo script to make your backups. That one can handle incremental backups (should you wish) and it can safely backup your Data.fs while your plone site is running. The most comfortable is to add collective.recipe.backup to your buildout, that gives you a bin/backup script with all the necessary options filled in.

    See also http://plone.org/documentation/faq/plone-backup-move

    0 讨论(0)
提交回复
热议问题