Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

what is the impact on the index when taking back up, either online or offline

Avatar

Level 1

Does online back up consider index, or harm

Does offline back up consider index, or harm

There are other back up also like tape and Snapshot, whats the relevance of that in regards to back up. 

Whats the best back up in regards to index of AEM OOB/Custom?

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @rohan07,

I'm assuming you're talking about content backup(pages, assets, configurations).
Create a content package(package manager) and it will just be fine. For the automation you can write cURL scripts and save it on your linux machine(usually hosted on linux servers) and create a crontab entry and that will take care of your periodic content backup(s). The only information you lose is version history.

snippet:

 

# creates the package
curl -u admin:admin -X POST http://localhost:4502/crx/packmgr/service/.json/etc/packages/mySite-backup-images.zip?cmd=create -d packageName=mySite-backup-images -d groupName=mySite-Backup

#adds the filters
curl -u admin:admin -Froot="/content/dam/mySite/images" http://localhost:4502/etc/packages/mySite-Backup/mySite-backup-images.zip/jcr:content/vlt:definition/filter/f0

#builds the package
curl -u admin:admin -X POST http://localhost:4502/crx/packmgr/service/.json/etc/packages/mySite-Backup/mySite-backup-images.zip?cmd=build

#downloads the package
curl -u admin:admin http://localhost:4502/etc/packages/mySite-Backup/mySite-backup-images.zip > /home/<USER>/<DIRECTORY>/mySite-backup-images_$(date '+%m%d%Y').zip

echo "Backup is done!"
pause

 

 

On the other hand if you want to create a backup of the entire repository, you have three options-

1. offline backup

2. online - AEM integrated backup tool

3. online - filesystem snapshot

 

You can read more about it here : Backup and Restore

 

I hope that helps!

 

Thanks,

Bilal.

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Hi @rohan07,

I'm assuming you're talking about content backup(pages, assets, configurations).
Create a content package(package manager) and it will just be fine. For the automation you can write cURL scripts and save it on your linux machine(usually hosted on linux servers) and create a crontab entry and that will take care of your periodic content backup(s). The only information you lose is version history.

snippet:

 

# creates the package
curl -u admin:admin -X POST http://localhost:4502/crx/packmgr/service/.json/etc/packages/mySite-backup-images.zip?cmd=create -d packageName=mySite-backup-images -d groupName=mySite-Backup

#adds the filters
curl -u admin:admin -Froot="/content/dam/mySite/images" http://localhost:4502/etc/packages/mySite-Backup/mySite-backup-images.zip/jcr:content/vlt:definition/filter/f0

#builds the package
curl -u admin:admin -X POST http://localhost:4502/crx/packmgr/service/.json/etc/packages/mySite-Backup/mySite-backup-images.zip?cmd=build

#downloads the package
curl -u admin:admin http://localhost:4502/etc/packages/mySite-Backup/mySite-backup-images.zip > /home/<USER>/<DIRECTORY>/mySite-backup-images_$(date '+%m%d%Y').zip

echo "Backup is done!"
pause

 

 

On the other hand if you want to create a backup of the entire repository, you have three options-

1. offline backup

2. online - AEM integrated backup tool

3. online - filesystem snapshot

 

You can read more about it here : Backup and Restore

 

I hope that helps!

 

Thanks,

Bilal.

Avatar

Level 1
not looking to automate, updated the question now.