-
- Service Provider
- Posts: 21
- Liked: 1 time
- Joined: Mar 05, 2010 3:22 am
- Full Name: Shio Soon Chyuan
- Contact:
recommandation solution to keep veeam images for 7 years?
Hi Guys,
One of my customer (hotel base) would like to request for solution to keep Veeam Images for 7 years?
Any recommend way to do that?
Thanks
One of my customer (hotel base) would like to request for solution to keep Veeam Images for 7 years?
Any recommend way to do that?
Thanks
-
- Veteran
- Posts: 261
- Liked: 29 times
- Joined: May 03, 2011 12:51 pm
- Full Name: James Pearce
- Contact:
Re: recommandation solution to keep veeam images for 7 years
Tape or USB drives depending on data sizes, and periodically copy of the VBK files onto them. Don't dismiss USB drives if the data set will fit; the cost/GB is very close to tape and of course you don't need a loader now or in the future to restore from it.
-
- Veteran
- Posts: 391
- Liked: 39 times
- Joined: Jun 08, 2010 2:01 pm
- Full Name: Joerg Riether
- Contact:
Re: recommandation solution to keep veeam images for 7 years
Backup yearly to Tape or removable disks and place these in a safe and secured location out of your datacenter.
Best regards,
Joerg
Best regards,
Joerg
-
- Service Provider
- Posts: 21
- Liked: 1 time
- Joined: Mar 05, 2010 3:22 am
- Full Name: Shio Soon Chyuan
- Contact:
Re: recommandation solution to keep veeam images for 7 years
we are try not to use tape and removable disk for our customer.
Our proposal will provided three backup storage :
1.local backup storage for keeping veeam images up to a month (using incremental with synthetic fulls backup mode).
2.For primary DR backup storage, we will grab only veeam synthetic fulls (using script/powershell) from local backup storage every week.
3.For secondary DR backup storage, it will sync everything from primary DR backup storage.
Can this solutions work?
Any recommend script or powershell sample to copy only synthetic fulls to DR backup storage?
Also any software to sync primary DR backup storage to secondary DR backup storage?
Thanks!
Our proposal will provided three backup storage :
1.local backup storage for keeping veeam images up to a month (using incremental with synthetic fulls backup mode).
2.For primary DR backup storage, we will grab only veeam synthetic fulls (using script/powershell) from local backup storage every week.
3.For secondary DR backup storage, it will sync everything from primary DR backup storage.
Can this solutions work?
Any recommend script or powershell sample to copy only synthetic fulls to DR backup storage?
Also any software to sync primary DR backup storage to secondary DR backup storage?
Thanks!
-
- Veteran
- Posts: 391
- Liked: 39 times
- Joined: Jun 08, 2010 2:01 pm
- Full Name: Joerg Riether
- Contact:
Re: recommandation solution to keep veeam images for 7 years
several ways. one could be to use reverse increments, thus no need to do a synthetic full, and then delete older files on secondary backup target und then copy the very latest,
example....with powershell...let´s say D: is target and T: is source
Best regards,
Joerg
example....with powershell...let´s say D: is target and T: is source
Code: Select all
echo "kill older than 5 days..."
$a = Get-ChildItem d:\veeambackup1 -recurse
foreach($x in $a)
{
$y = ((Get-Date) - $x.CreationTime).Days
if ($y -gt 5 -and $x.PsISContainer -ne $True)
{$x.Delete()}
}
echo "copy latest stuff over to secondary target..."
$date = (Get-Date).AddDays(-1).ToString('M-d-y')
xcopy "T:\veeam\*.*" d:\veeambackup1 /I /C /E /F /H /R /Y /J /D:$date
Joerg
-
- Veeam Software
- Posts: 21139
- Liked: 2141 times
- Joined: Jul 11, 2011 10:22 am
- Full Name: Alexander Fogelson
- Contact:
Re: recommandation solution to keep veeam images for 7 years
With forward incremental backup mode you can use this script to backup the latest VBK file: A script for backing up the latest .VBK file.desmond shio wrote:Any recommend script or powershell sample to copy only synthetic fulls to DR backup storage?
The most commonly used software among our customers is rsync. Please search this forum for existing discussions regarding synchronizing backup files offsite.desmond shio wrote:Also any software to sync primary DR backup storage to secondary DR backup storage?
-
- VeeaMVP
- Posts: 6166
- Liked: 1971 times
- Joined: Jul 26, 2009 3:39 pm
- Full Name: Luca Dell'Oca
- Location: Varese, Italy
- Contact:
Re: recommandation solution to keep veeam images for 7 years
Uhm, 7 years retention and you do not want to use tapes nor usb-disk? Have you considered the power consumption for storage and cooling you are going to pay over a 7 years period, just to keep a storage powered on and receiving worm copies of your backups? Storage replica is great for DR and BC solutions, or for mid-term retention, if you go over a defined period, you are going to pay more than the other two solutions, even with deduplication in place.desmond shio wrote:we are try not to use tape and removable disk for our customer.
Luca.
Luca Dell'Oca
Principal EMEA Cloud Architect @ Veeam Software
@dellock6
https://www.virtualtothecore.com/
vExpert 2011 -> 2022
Veeam VMCE #1
Principal EMEA Cloud Architect @ Veeam Software
@dellock6
https://www.virtualtothecore.com/
vExpert 2011 -> 2022
Veeam VMCE #1
-
- Expert
- Posts: 231
- Liked: 18 times
- Joined: Dec 07, 2009 5:09 pm
- Full Name: Chris
- Contact:
Re: recommandation solution to keep veeam images for 7 years
This may be a good reason to use Amazon Glacier.desmond shio wrote:we are try not to use tape and removable disk for our customer.
-- Chris
Who is online
Users browsing this forum: Bing [Bot], Google [Bot] and 83 guests