E.g. below will create a snapshot backup called author.tar:
tar -zcf author.may20.tar crx-quickstart/*
It is not worthwhile to gzip this to save on storage because many of the files are already compressed.
To restore one of these snapshots (e.g. author.may20.tar), delete the existing /crx-quickstart folder with a command like this:
rm -r crx-quickstart
Then, run the following command to restore from the backup:
tar -zxf author.may20.tar
Also, see this for information on cloning CQ instances.
No comments:
Post a Comment
If you have any doubts or questions, please let us know.