-
- Novice
- Posts: 3
- Liked: never
- Joined: Nov 26, 2013 10:23 pm
- Contact:
Disk failure with disabled backup jobs
Hello,
We had a disk array failure that held our backup jobs for vmware esxi. We are running version 6.5. First thing I did was to disable our nightly backup jobs. (We still have replicas that are running separate of this disk array)
I'm in the process of rebuilding a new array as a repository for our backups. After this rebuild is complete, can I simply re-enable the disabled backup jobs? Will they realize that they have no previous restore points and start a fresh job? Is it necessary to clean up the jobs of any previous restore points so they are all starting fresh? I'm trying to avoid having to rebuild all my jobs again.
We had a disk array failure that held our backup jobs for vmware esxi. We are running version 6.5. First thing I did was to disable our nightly backup jobs. (We still have replicas that are running separate of this disk array)
I'm in the process of rebuilding a new array as a repository for our backups. After this rebuild is complete, can I simply re-enable the disabled backup jobs? Will they realize that they have no previous restore points and start a fresh job? Is it necessary to clean up the jobs of any previous restore points so they are all starting fresh? I'm trying to avoid having to rebuild all my jobs again.
-
- Chief Product Officer
- Posts: 31806
- Liked: 7300 times
- Joined: Jan 01, 2006 1:01 am
- Location: Baar, Switzerland
- Contact:
Re: Disk failure with disabled backup jobs
Hi, if you are using reversed incremental backup mode, you can avoid re-creating the jobs with the ForceCreateMissingVBK registry key. Otherwise, I am afraid you will have to create new jobs, as the existing ones will be failing due to not being able to find earlier backups. Thanks!
-
- VP, Product Management
- Posts: 6035
- Liked: 2860 times
- Joined: Jun 05, 2009 12:57 pm
- Full Name: Tom Sightler
- Contact:
Re: Disk failure with disabled backup jobs
Or you can just go to Backups...Disks, right click, and choose "Remove from backups" (no need to pick "Remove from disk" since the files are already gone). This removes the old backup chain from the database, but leaves the job intact. On the next job run the job will start from scratch. No registry key needed, no job recreation needed. Note that you can even multi-select in this screen so this is easy even if you have a lot of jobs.
-
- Chief Product Officer
- Posts: 31806
- Liked: 7300 times
- Joined: Jan 01, 2006 1:01 am
- Location: Baar, Switzerland
- Contact:
Re: Disk failure with disabled backup jobs
I did not know this would work, thanks Tom.
-
- Veteran
- Posts: 387
- Liked: 97 times
- Joined: Mar 24, 2010 5:47 pm
- Full Name: Larry Walker
- Contact:
Re: Disk failure with disabled backup jobs
Clone the job and use the clone, new files are made. painless.
-
- Chief Product Officer
- Posts: 31806
- Liked: 7300 times
- Joined: Jan 01, 2006 1:01 am
- Location: Baar, Switzerland
- Contact:
Re: Disk failure with disabled backup jobs
Yep, that will work too
-
- Product Manager
- Posts: 20406
- Liked: 2298 times
- Joined: Oct 26, 2012 3:28 pm
- Full Name: Vladimir Eremin
- Contact:
Re: Disk failure with disabled backup jobs
As to cloning jobs/removing jobs, this process can be automated using PS. Something like this should help:
Thanks.
Code: Select all
asnp VeeamPSSnapin
Foreach ($Job in (Get-VBRJob | where {$_.Jobtype -eq "Backup"})
{
$Job.disablescheduler()
Copy-VBRJob -Job $Job
Remove-VBRJob -Job $Job
}
Thanks.
Who is online
Users browsing this forum: Bing [Bot], Majestic-12 [Bot] and 216 guests