X-Git-Url: http://git.vrable.net/?p=cumulus.git;a=blobdiff_plain;f=README;h=98717989177903a40eb7a4b04df4e916f3d1264b;hp=9c42cf73b322244249811756571deda182d23a55;hb=f0d858f0a77ccff3d4a71fca37823882bf135670;hpb=75e7ec95c43438f4a43e5cff400ebf31e55e5bc5 diff --git a/README b/README index 9c42cf7..9871798 100644 --- a/README +++ b/README @@ -136,6 +136,29 @@ should be restored (this directory should initially be empty). specified, the entire snapshot is restored. +Remote Backups +-------------- + +The cumulus-util command can operate directly on remote backups. The +--store parameter accepts, in addition to a raw disk path, a URL. +Supported URL forms are + file:///path Equivalent to /path + s3://bucket/path Storage in Amazon S3 + (Expects the AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY + environment variables to be set appropriately) + +To copy backup snapshots from one storage area to another, the +cumulus-sync command can be used, as in + $ cumulus-sync file:///cumulus s3://my-bucket/cumulus + +Support for directly writing backups to a remote location (without using +a local staging directory and cumulus-sync) is slightly more +experimental, but can be achieved by replacing + --dest=/cumulus +with + --upload-script="cumulus-store s3://my-bucket/cumulus" + + Alternate Restore Tool ----------------------