VMware Backup & Recovery

Size: px
Start display at page:

Download "VMware Backup & Recovery"

Transcription

1 VMware Backup & Recovery Doug Hazelman Senior Director, Product Strategy Veeam Software

2 Agenda VMware image level backup overview Considerations for Exchange Backup & Recovery Considerations for Oracle Backup & Recovery

3 What are Virtual Machines? They re files on disk

4 Is the Image enough? Traditionally, no

5 What about Crash Consistent image-level backups? Microsoft VSS helps (application quiescence) but may not be enough

6 Applications The biggest barrier Traditional image level approach does not address application item-level restore (AD, SQL, Oracle, Exchange, etc.)

7 What about image plus agent? Solves many issues, but you re backing up your data twice

8 It s not about backup, it s about recovery Backup is easy, recovery is hard

9 Considerations for Exchange Image-Level Backup & Recovery

10 3 rules of Exchange backup Microsoft perspective: In order to be compliant with Exchange Server, VSS based backup applications must follow three basic requirements to ensure the integrity and recoverability of shadow copy backups. If these requirements are not followed, Microsoft... will not be able to troubleshoot backup and restore issues. Rule 1. Exchange must be backed up exclusively through the Exchange VSS Writer. Rule 2. Backup should not be relied on until the backup application has completed integrity verification. Rule 3. Restores to original location must be done exclusively with the Exchange VSS Writer.

11 Rule 1: VSS-aware backup Veeam implements proprietary VSS integration since 2.0 Fully automated (no agents or manual deployment) Supported directly by Veeam More information: Veeam Backup v5 FAQ:

12 Rule 2: Verify before you rely SureBackup Recovery Verification Great flexibility (supports custom scripts) Choose method of verification that is sufficient for you Remote run eseutil or isinteg on test VM (no stress on production) Log on to test mailbox via HTTPS and query test message Keep in mind DC dependency! Exchange must see DC to be able to properly boot in the isolated environment.

13 Rule 3: VSS-aware restore Restores to original location must be done exclusively with the Exchange VSS Writer, and in correct sequence: Boot up Exchange VM with mailbox stores dismounted Tell Exchange VSS Writer to perform restore from VSS snapshot Mount mailbox stores Veeam implements these Microsoft requirements Most image-level backup vendors do not do this, they just boot VM normally like there is no Exchange in it Perform test restore to check your current solution!

14 Rule 3: VSS-aware restore Look for presence of these events on the restored VMs: Event Type: Information Event Source: MSExchangeIS Event Category: Exchange VSS Writer Event ID: 9620 User: N/A Computer: ServerName.contoso.com General: Exchange VSS Writer (instance GUID) has processed pre-restore events successfully. Event Type: Information Event Source: MSExchangeIS Event Category: Exchange VSS Writer Event ID: 9618 User: N/A Computer: ServerName.contoso.com General: Exchange VSS Writer (instance GUID) has processed post-restore events successfully.

15 Transaction logs If transaction log files are not pruned after backup, the log files accumulate until they fill all the available disk space. Exchange VSS Writer implements transaction log pruning capabilities. However, VMware Tools VSS is NOT a backup application and cannot know if backup was completed successfully. Thus, it cannot process transaction logs by design. Any application riding on VMware Tools VSS instead of providing specific integration will not truncate logs.

16 Transaction logs Some solutions do provide transaction log pruning, but perform log pruning right after the snapshot is taken. This approach is actually worse than no pruning: If backup does not complete successfully, you will not have a good backup, and your transaction logs will be gone. You will not be able to restore in case of disaster. Perform test backup to check your current solution! Perform backup, wait for the job to complete successfully, ensure transaction logs are actually pruned. Perform backup, but this time reset the backup server while the job is running (after virtual disk copy starts). Transaction logs should NOT be pruned.

17 Granular recovery challenges Typically granular recovery from an image-level backup was difficult Restore entire Active Directory and Exchange servers to an isolated environment (resource intensive and time consuming) 3 rd party software that mounts Exchange data store still requires data store to be extracted first (time and disk space), additional cost associated Agent-based solutions could back up the Exchange data, but that s backing up the data twice when working with image-level backups, additional costs for application agents

18 Granular recovery with vpower Veeam s patent-pending approach fully utilizes the existing virtual infrastructure Veeam application group and virtual lab features automatically create an isolated environment vpower allows you to run the AD and Exchange servers directly from the backup files, no extraction necessary Veeam s Exchange Recovery Wizard utilizes Microsoft Exchange APIs and connects to both the production and isolated environments Exchange item-level recovery in minutes, not hours!

19 Exchange AIR EXCHANGE AD / DNS EXCHANGE Isolated Sandbox Virtual Lab vsphere vpower Backup Store vpower NFS VMFS datastore

20 Considerations for Oracle Image-level Backup & Recovery

21 Oracle on Windows Oracle 11g has a component Oracle VSS Writer Select Windows OCI Components on the Oracle 11g database install wizard Support for Oracle 10g started with patchset and above Requires ARCHIVELOG mode Veeam app-aware processing supports transactionally consistent backups with Oracle VSS Writer installed. No additional settings required (works out of box)

22 Oracle on non-windows Research among our customers showed 3 equally popular approaches to transaction consistency, from most to least intrusive: Method 1. Performing suspend/resume of database Method 2. Putting all tables in hot backup mode Method 3. Doing crash-consistent backup All methods requires ARCHIVE LOGS mode, NOARCHIVELOGS mode supports cold backups only!

23 Method 1: Suspend/Resume Effectively closest to cold backups A few seconds downtime (which many smaller shops find acceptable during off hours) Uses VMware pre-freeze and post-thaw scripts: Pre-freeze script executes ALTER SYSTEM SUSPEND; Post-thaw script executes ALTER SYSTEM RESUME; For more info on using pre-freeze and post-thaw scripts with Veeam Backup, see whitepaper below. Hot backup of MySQL on a Linux VM

24 Method 2: Hot Backup Mode This method puts all tables in hot backup mode that is specifically designed for hot backups. No downtime. Oracle ceases to make direct changes to the database file, so it can be safely backed up. Trade-off is increased use of rollback segments, redo logs, archive logs, and internal buffer areas. Virtualization and VMware snapshots are huge win here, as database only stays like that for a few seconds: In legacy file-based backups, you have to size redolog files big enough to survive the entire hot backup window, and account for the extra load from having to take copies of the changed datafile blocks.

25 Method 2: Hot Backup Mode Uses VMware pre-freeze and post-thaw scripts: Pre-freeze script executes alter tablespace TABLENAME begin backup; Post-thaw script executes alter tablespace TABLENAME end backup; Scripts must enumerate and cycle through all datafiles and place them in hot backup mode. A number of sample scripts are available on Internet depending on your OS.

26 Method 3: Crash-Consistent Backup Backup Oracle w/out special measures. Be sure VMware Tools quiescence is disabled (beware of SYNC driver!) No downtime, trade-off is having to convince your DBA :) Comments from backup administrators: We used this method for years, and although our DBA was skeptical for a while, I eventually won him over because we wrote a script that actually mounted our storage snapshots on the backup server, started Oracle, preformed the "crash recovery" and ran a dbverify every night. This ran for years without a single recovery failure. during the SAN corruption issue earlier this year that caused us to loose 4+ TB of VM's, we restored almost 1TB of Oracle databases with Veeam with no issues whatsoever. All of these databases were backed up with no pre-freeze/post-thaw scripts, and all restored correctly, performed media recovery, and ran flawlessly.

27 Method 3: Crash-Consistent Backup Why this works? Virtualization and VMware snapshots make it possible! Oracle works hard to protect data in the event of a system failure: Writes transactions to the log before committing them to the datafile Provides methods for recovery of volumes after a hardware or system failure, or other issue. VMware snapshots are "atomic" and snapshot every VM disk simultaneously. This is no different that if the system had somehow "crashed" at that moment and Oracle is about as safe as you get in that circumstance.

28 Oracle AIR vpower enables granular Oracle recoveries at no additional charge Restoring tables and individual records: Oracle SQL Developer is great tool and it is free Investigating schema changes and restoring schema Very common issue Oracle admins and developers have to deal with. Tools are readily available such as RedGate Schema Compare for Oracle, but they require connecting running to previous copy of database - vpower make previous copy available for you in just a few minutes then you just compare current and previous copy!

29 U-AIR No application-specific agents to license No additional products to buy No special backups to create Durable not tied to application internals Supports ANY virtualized application, on ANY OS Also includes wizards for Microsoft Exchange, Active Directory and SQL Server Administrator- or user-directed recovery

30 U-AIR workflow engine Maintains separation of permissions between backup administrators and application owners Application owners install wizards on their workstations Application owners submit restore requests to backup administrators Backup administrators approve/deny requests Application owners get notified, can then finish the wizard to restore items

31 Veeam Backup & Replication

32 Breakthrough technology Publishes the backup as a regular VMDK file Compressed, deduplicated, incremental Runs a VM directly from the backup file Runs on regular backup storage Does not make any changes to the backup file Automatically manages an isolated virtual lab Workflow engine manages requests Proxy appliance provides access into the isolated environment This is why I love Veeam. They take all the virtualization technology pieces on the table and put them together into a functioning business solution. Brett Westover IT Administrator Therapeutic Research Center

33 Instant VM recovery Fast: Start VM directly from backup file Readily available: Uses existing backups and backup storage Buys you time: Users keep working while you troubleshoot the problem

34 Instant VM recovery Storage vmotion / Veeam Backup & Replication

35 How it works Publishes the contents of the backup file as a datastore that an ESX(i) host can connect to Uses vpower NFS server Works with compressed, deduplicated and incremental backups Use Storage vmotion, replication or hot VM copy to complete the recovery

36 But wait, there s more! Happy Holidays from Veeam! Announcing our NFR for VCP, VCI and vexpert program Our thanks to the VMware community 2 socket NFR license for: Veeam Backup & Replication with vpower Veeam ONE Solution (Veeam Monitor, Reporter and Business View)

37 Thank you! For more information Contact the presenter: Go to Veeam Blog Veeam Forums FAQ: on Twitter Contact your local Veeam ProPartner or a Veeam sales representative:

Advanced SQL Server backup & recovery for VM environments

Advanced SQL Server backup & recovery for VM environments Advanced SQL Server backup & recovery for VM environments Rick Vanover vexpert, VCP, MCITP Software Strategy Specialist Veeam Software Twitter: @RickVanover Blog: http://www.veeam.com/blog Administrative

More information

Veeam Backup & Replication and Iomega

Veeam Backup & Replication and Iomega Veeam Backup & Replication and Iomega Easy to use backup storage with StorCenter PX Presenter Name / Event Name What are the challenges? Managing VMware-centric environments requires a new way of thinking

More information

What s New in Veeam Backup & Replication v5

What s New in Veeam Backup & Replication v5 vpower What s New in Veeam Backup & Replication v5 Veeam Backup & Replication v5 is a major new release of Veeam s industry-leading data protection and disaster recovery solution for VMware vsphere that

More information

Complete Storage and Data Protection Architecture for VMware vsphere

Complete Storage and Data Protection Architecture for VMware vsphere Complete Storage and Data Protection Architecture for VMware vsphere Executive Summary The cost savings and agility benefits of server virtualization are well proven, accounting for its rapid adoption.

More information

VMware and Microsoft VSS: What You Need to Know

VMware and Microsoft VSS: What You Need to Know Commissioned by VMware and Microsoft VSS: What You Need to Know A Concentrated Technology SolutionSpace Analysis Greg Shields white paper / page 1 Introduction When it comes to Microsoft VSS, there s more

More information

Veeam Backup & Replication 5.0

Veeam Backup & Replication 5.0 Veeam Backup & Replication 5.0 User Guide April 2011 Copyright 2005 2011 Veeam Software Inc. All rights reserved worldwide. No part of this publication may be reproduced, transmitted, transcribed, stored

More information

Veeam Backup & Replication v6

Veeam Backup & Replication v6 Veeam Backup & Replication v6 More great reasons to choose Veeam TECTRADE B.V Dimitri de Swart Pre-sales Consultant. What s coming in v6 Enterprise scalability Advanced replication Multi-hypervisor support

More information

Backing Up the CTERA Portal Using Veeam Backup & Replication. CTERA Portal Datacenter Edition. May 2014 Version 4.0

Backing Up the CTERA Portal Using Veeam Backup & Replication. CTERA Portal Datacenter Edition. May 2014 Version 4.0 Backing Up the CTERA Portal Using Veeam Backup & Replication CTERA Portal Datacenter Edition May 2014 Version 4.0 Copyright 2009-2014 CTERA Networks Ltd. All rights reserved. No part of this document may

More information

How To Choose Veeam Backup & Replication

How To Choose Veeam Backup & Replication VMware Backup: Veeam Backup & Replication vs. Legacy Backup Tools Top 10 Reasons to Choose Veeam Veeam Backup & Replication isn t the only way to back up your virtual environment but it is the best way.

More information

Backup and Recovery Best Practices With Tintri VMstore

Backup and Recovery Best Practices With Tintri VMstore Backup and Recovery Best Practices With Tintri VMstore Backup and Recovery Best Practices with Tintri VMstore TECHNICAL BEST PRACTICES PAPER, Revision 1.0, April 10, 2014 Contents Contents Introduction

More information

ESG Lab Review. Introduction. Customer Challenges

ESG Lab Review. Introduction. Customer Challenges ESG Lab Review Veeam Backup & Replication Built for Virtualization Date: March 2013 Authors: Vinny Choinski, Senior Lab Analyst; Kerry Dolan, Lab Analyst; and Jason Buffington, Senior Analyst Abstract:

More information

VM backup is the new standard fare

VM backup is the new standard fare VM backup is the new standard fare The right answer to backup and restore these hundreds of VMs Andreas Neufert System Engineer Contents Introduction 3 Starting situation as a central theme of this document

More information

Is VMware Data Recovery the replacement for VMware Consolidated Backup (VCB)? VMware Data Recovery is not the replacement product for VCB.

Is VMware Data Recovery the replacement for VMware Consolidated Backup (VCB)? VMware Data Recovery is not the replacement product for VCB. VMware Data Recovery Frequently Asked Questions (FAQ), June 2010 Product Overview What is VMware Data Recovery? VMware Data Recovery is a backup and recovery product for VMware vsphere 4.x environments

More information

Availability for the modern datacentre Veeam Availability Suite v8 & Sneakpreview v9

Availability for the modern datacentre Veeam Availability Suite v8 & Sneakpreview v9 Veeam Summer School Availability for the modern datacentre Veeam Availability Suite v8 & Sneakpreview v9 Jan van Leuken System Engineer Benelux, Veeam Software jan.vanleuken@veeam.com +31 (0)615 83 50

More information

Veeam Backup & Replication for VMware

Veeam Backup & Replication for VMware Veeam Backup & Replication for VMware Version 8.0 Evaluator s Guide May, 2015 2015 Veeam Software. All rights reserved. All trademarks are the property of their respective owners. No part of this publication

More information

TECHNICAL PAPER. Veeam Backup & Replication with Nimble Storage

TECHNICAL PAPER. Veeam Backup & Replication with Nimble Storage TECHNICAL PAPER Veeam Backup & Replication with Nimble Storage Document Revision Date Revision Description (author) 11/26/2014 1. 0 Draft release (Bill Roth) 12/23/2014 1.1 Draft update (Bill Roth) 2/20/2015

More information

Drobo How-To Guide. Use a Drobo iscsi Array as a Target for Veeam Backups

Drobo How-To Guide. Use a Drobo iscsi Array as a Target for Veeam Backups This document shows you how to use a Drobo iscsi SAN Storage array with Veeam Backup & Replication version 5 in a VMware environment. Veeam provides fast disk-based backup and recovery of virtual machines

More information

NetBackup for VMware Data Recovery Services to End the Dark Ages of Virtualization

NetBackup for VMware Data Recovery Services to End the Dark Ages of Virtualization NetBackup for VMware Data Recovery Services to End the Dark Ages of Virtualization VADP vstorage APIs for Data Protection Centralized Efficient Off-host LAN free Challenges Dynamic Environment Performance

More information

Learn how to Backup Your Exchange Infrastructure

Learn how to Backup Your Exchange Infrastructure Learn how to Backup Your Exchange Infrastructure Niels Engelen Systems Engineer for Veeam Software (vexpert, VCP, CCNA) Johan Huttenga Solutions Architect for Veeam Software (MCSA, MCITP) Contents Executive

More information

Top 10 Do s/don ts of Data Protection for VMware vsphere

Top 10 Do s/don ts of Data Protection for VMware vsphere September 8, 2014 Top 10 Do s/don ts of Data Protection for VMware vsphere Dominic Cheah Technical Marketing Engineer Agenda Exploring Data Protection for VMware vsphere vsphere Snapshots, Cloning, and

More information

VMware vsphere Data Protection 6.0

VMware vsphere Data Protection 6.0 VMware vsphere Data Protection 6.0 TECHNICAL OVERVIEW REVISED FEBRUARY 2015 Table of Contents Introduction.... 3 Architectural Overview... 4 Deployment and Configuration.... 5 Backup.... 6 Application

More information

Availability for the modern datacentre

Availability for the modern datacentre Availability for the modern datacentre Veeam Availability Suite v8 Mohamad Rizk Presales Consultant Middle East mohamad.rizk@veeam.com Veeam is built for virtualization Founded in 2006, Global company

More information

Virtualization Backup/Replication Solution Comparison:

Virtualization Backup/Replication Solution Comparison: Virtualization Backup/Replication Solution Comparison: PHD Virtual Backup & Replication vs Veeam Backup & Replication Queries the following Comparison is trying to Answer: PHD Virtual Backup & Replication

More information

Veeam Backup & Replication

Veeam Backup & Replication Veeam Backup & Replication Version 6.5 User Guide VMware Environments November, 2012 2012 Veeam Software. All rights reserved. All trademarks are the property of their respective owners. No part of this

More information

VMware and VSS: Application Backup and Recovery

VMware and VSS: Application Backup and Recovery Best Tools : VMware ESX Virtualization Management VMware and VSS: Application Backup and Recovery Written by: Anton Gostev Product Manager Veeam Software CONTENTS EXECUTIVE SUMMARY... 3 VSS AWARE BACKUP

More information

Product Brief. it s Backed Up

Product Brief. it s Backed Up Product Brief it s Backed Up IT Authorities, Inc. 1/11/2010 Table of Contents Contents Table of Contents... 2 it s Backed Up... 3 Backup... 3 Backup, Continued... 4 Backup, Continued... 5 Application Aware

More information

Introduction. Setup of Exchange in a VM. VMware Infrastructure

Introduction. Setup of Exchange in a VM. VMware Infrastructure Introduction VMware Infrastructure is deployed in data centers for deploying mission critical applications. Deployment of Microsoft Exchange is a very important task for the IT staff. Email system is an

More information

Backup and Recovery Best Practices With Veeam Backup & Replication

Backup and Recovery Best Practices With Veeam Backup & Replication TECHNICAL WHITE PAPER Backup and Recovery Best Practices With Veeam Backup & Replication www.tintri.com TECHNICAL WHITE PAPER Contents Intended Audience 1 Introduction 1 Consolidated List of Practices

More information

How To Protect Your Data From Being Damaged On Vsphere Vdp Vdpa Vdpo Vdprod (Vmware) Vsphera Vdpower Vdpl (Vmos) Vdper (Vmom

How To Protect Your Data From Being Damaged On Vsphere Vdp Vdpa Vdpo Vdprod (Vmware) Vsphera Vdpower Vdpl (Vmos) Vdper (Vmom VMware vsphere Data Protection 6.0 Maciej Kot Senior Systems Engineer VMware Overview vsphere Data Protection Overview Data protection for VMs and applications Agent-less VM backup and restore Agents for

More information

Backup Exec 3600 R3 Appliance

Backup Exec 3600 R3 Appliance TECHNICAL WHITE PAPER: BACKUP EXEC TM 3600 R3 APPLIANCE Backup Exec 2014 Technical White Paper Backup Exec 3600 R3 Appliance Technical White Papers are designed to introduce Symantec partners and end users

More information

Veeam Backup & Replication for VMware

Veeam Backup & Replication for VMware Veeam Backup & Replication for VMware Version 6.x Best Practices for Deployment & Configuration March, 2013 Tom Sightler Solutions Architect, Core Products Veeam Software 2013 Veeam Software. All rights

More information

How to Backup and Restore a VM using Veeam

How to Backup and Restore a VM using Veeam How to Backup and Restore a VM using Veeam Table of Contents Introduction... 3 Assumptions... 3 Add ESXi Server... 4 Backup a VM... 6 Restore Full VM... 12 Appendix A: Install Veeam Backup & Replication

More information

BDR TM for VMware. VMware BACKUP WITH VEMBU. VEMBU TECHNOLOGIES www.vembu.com TRUSTED BY OVER 25,000 BUSINESSES

BDR TM for VMware. VMware BACKUP WITH VEMBU. VEMBU TECHNOLOGIES www.vembu.com TRUSTED BY OVER 25,000 BUSINESSES BDR TM for VMware VMware BACKUP WITH VEMBU VEMBU TECHNOLOGIES www.vembu.com Copyright Information Information in this document is subject to change without notice. The entire risk of the use or the results

More information

Veeam Backup and Replication Architecture and Deployment. Nelson Simao Systems Engineer

Veeam Backup and Replication Architecture and Deployment. Nelson Simao Systems Engineer Veeam Backup and Replication Architecture and Deployment Nelson Simao Systems Engineer Agenda Veeam Backup Server / Proxy Architecture Veeam Backup Server / Backup Proxy Backup Transport Modes Physical

More information

Backup Exec 15: Protecting Microsoft Hyper-V

Backup Exec 15: Protecting Microsoft Hyper-V TECHNICAL BRIEF: BACKUP EXEC 15: PROTECTING MICROSOFT HYPER-V........................................ Backup Exec 15: Protecting Microsoft Hyper-V Who should read this paper Technical White Papers are

More information

Turbo Charge Your Data Protection Strategy

Turbo Charge Your Data Protection Strategy Turbo Charge Your Data Protection Strategy Data protection for the hybrid cloud 1 WAVES OF CHANGE! Data GROWTH User EXPECTATIONS Do It YOURSELF Can t Keep Up Reliability and Visibility New Choices and

More information

Instant Recovery for VMware

Instant Recovery for VMware NETBACKUP 7.6 FEATURE BRIEFING INSTANT RECOVERY FOR VMWARE NetBackup 7.6 Feature Briefing Instant Recovery for VMware Version number: 1.0 Issue date: 2 nd August 2013 This document describes a feature

More information

Veeam Backup & Replication Modern Data Protection HP Storage & Veeam Software complete VM data protection Business & technical challenges Video demonstration What s more with Veeam Backup & Replication

More information

VM Backup: Veeam vs. Legacy Backup Tools Top 10 Reasons to Choose Veeam

VM Backup: Veeam vs. Legacy Backup Tools Top 10 Reasons to Choose Veeam VM Backup: Veeam vs. Legacy Backup Tools Top 10 Reasons to Choose Veeam Veeam Backup & Replication isn t the only way to back up your Modern Data Center but it is the best way. While many legacy backup

More information

VMware vsphere Data Protection 5.8 TECHNICAL OVERVIEW REVISED AUGUST 2014

VMware vsphere Data Protection 5.8 TECHNICAL OVERVIEW REVISED AUGUST 2014 VMware vsphere Data Protection 5.8 TECHNICAL OVERVIEW REVISED AUGUST 2014 Table of Contents Introduction.... 3 Features and Benefits of vsphere Data Protection... 3 Additional Features and Benefits of

More information

Protecting Miscrosoft Hyper-V Environments

Protecting Miscrosoft Hyper-V Environments Protecting Miscrosoft Hyper-V Environments Who should read this paper Technical White Papers are designed to introduce Veritas partners and end users to key technologies and technical concepts that are

More information

VMware vsphere Data Protection

VMware vsphere Data Protection FREQUENTLY ASKED QUESTIONS VMware vsphere Data Protection vsphere Data Protection Advanced Overview Q. What is VMware vsphere Data Protection Advanced? A. VMware vsphere Data Protection Advanced is a backup

More information

Case Studies. Data Sheets : White Papers : Boost your storage buying power... use ours!

Case Studies. Data Sheets : White Papers : Boost your storage buying power... use ours! TM TM Data Sheets : White Papers : Case Studies For over a decade Coolspirit have been supplying the UK s top organisations with storage products and solutions so be assured we will meet your requirements

More information

Introduction to VMware vsphere Data Protection TECHNICAL WHITE PAPER

Introduction to VMware vsphere Data Protection TECHNICAL WHITE PAPER Introduction to VMware vsphere Data Protection TECHNICAL WHITE PAPER Table of Contents Introduction.... 3 Architectural Overview... 3 Deployment and Configuration.... 5 Administration.... 5 Backup....

More information

Veeam Availability Suite

Veeam Availability Suite s Veeam Availability Suite s Veeam Availability Suite combines the industry-leading backup, restore and replication capabilities of Replication with the advanced monitoring, reporting and capacity planning

More information

Veeam Backup & Replication

Veeam Backup & Replication Veeam Backup & Replication Version 7.0 Evaluator s Guide Hyper-V Environments August, 2013 2013 Veeam Software. All rights reserved. All trademarks are the property of their respective owners. No part

More information

Top 10 Best Practices of Backup and Replication for VMware and Hyper-V

Top 10 Best Practices of Backup and Replication for VMware and Hyper-V WHITE PAPER Top 10 Best Practices of Backup and Replication for VMware and Hyper-V By David Davis, VMware vexpert Virtualization changes everything for IT infrastructure administration and management.

More information

5 ways to leverage the free VMware hypervisor Key tips for working around the VMware cost barrier

5 ways to leverage the free VMware hypervisor Key tips for working around the VMware cost barrier 5 ways to leverage the free VMware Key tips for working around the VMware cost barrier While a free VMware virtualization setup only provides a limited list of features and functionalities, the shortcomings

More information

VMware VDR and Cloud Storage: A Winning Backup/DR Combination

VMware VDR and Cloud Storage: A Winning Backup/DR Combination VMware VDR and Cloud Storage: A Winning Backup/DR Combination 7/29/2010 CloudArray, from TwinStrata, and VMware Data Recovery combine to provide simple, fast and secure backup: On-site and Off-site The

More information

W H I T E P A P E R : D A T A P R O T E C T I O N. Backing Up VMware with Veritas NetBackup. George Winter January 2009

W H I T E P A P E R : D A T A P R O T E C T I O N. Backing Up VMware with Veritas NetBackup. George Winter January 2009 W H I T E P A P E R : D A T A P R O T E C T I O N Backing Up VMware with Veritas NetBackup George Winter January 2009 Contents 1.0 EXECUTIVE OVERVIEW... 3 1.1 INTENDED AUDIENCE... 3 1.2 GLOSSARY... 3 1.3

More information

VMware Virtual Machine Protection

VMware Virtual Machine Protection VMware Virtual Machine Protection PowerVault DL Backup to Disk Appliance Dell Symantec Symantec DL Appliance Team VMware Virtual Machine Protection The PowerVault DL Backup-to-Disk Appliance Powered by

More information

Backup Exec 2014: Protecting VMware

Backup Exec 2014: Protecting VMware TECHNICAL BRIEF: BACKUP EXEC 2014: PROTECTING VMWARE........................................ Backup Exec 2014: Protecting VMware Who should read this paper Technical White Papers are designed to introduce

More information

VEMBU VS VEEAM. Why Vembu is Better VEMBU TECHNOLOGIES TRUSTED BY OVER 25,000 BUSINESSES. www.vembu.com

VEMBU VS VEEAM. Why Vembu is Better VEMBU TECHNOLOGIES TRUSTED BY OVER 25,000 BUSINESSES. www.vembu.com VS Why Vembu is Better TECHNOLOGIES www.vembu.com Copyright Information Information in this document is subject to change without notice. The entire risk of the use or the results of the use of this document

More information

Recent Advancements in Disaster Recovery as a Service

Recent Advancements in Disaster Recovery as a Service Recent Advancements in Disaster Recovery as a Service WHITE PAPER November 2014 WHITE PAPER Recent Advancements in Disaster Recovery as a Service The Traditional Problem with DRaaS In the case of a hardware

More information

VMware vsphere Data Protection Evaluation Guide REVISED APRIL 2015

VMware vsphere Data Protection Evaluation Guide REVISED APRIL 2015 VMware vsphere Data Protection REVISED APRIL 2015 Table of Contents Introduction.... 3 Features and Benefits of vsphere Data Protection... 3 Requirements.... 4 Evaluation Workflow... 5 Overview.... 5 Evaluation

More information

How To Get A Storage And Data Protection Solution For Virtualization

How To Get A Storage And Data Protection Solution For Virtualization Smart Storage and Modern Data Protection Built for Virtualization Dot Hill Storage Arrays and Veeam Backup & Replication Software offer the winning combination. Veeam and Dot Hill Solutions Introduction

More information

Backup Exec 2012 Agent for VMware and Hyper-V

Backup Exec 2012 Agent for VMware and Hyper-V Backup Exec 2012 Agent for VMware and Hyper-V Technical Feature Brief change without notice. Copyright 2011 Symantec Corporation. All rights reserved. Symantec, the Symantec logo and Backup Exec are trademarks

More information

Availability for your modern datacenter

Availability for your modern datacenter Availability for your modern datacenter - Agentless backup and replication for VMware and Hyper-V - Scalable, powerful, easy-to-use, affordable Veeam Availability protection for the Always-On Business

More information

Veeam Summer School. Thomas Zaatman Veeam Software

Veeam Summer School. Thomas Zaatman Veeam Software Veeam Summer School Thomas Zaatman Veeam Software Availability for the your modern datacentre modern datacenter Veeam Availability Suite v8 Welcome to Veeam Veeam was founded in 2006 Exponential revenue

More information

Acronis Backup Product Line

Acronis Backup Product Line New Generation Data Protection Powered by Acronis AnyData Technology Acronis Backup Product Line Speaker name Introducing Acronis Backup Acronis Backup Target: Smaller environments, home office, remote

More information

Optimize VMware and Hyper-V Protection with HP and Veeam

Optimize VMware and Hyper-V Protection with HP and Veeam Optimize VMware and Hyper-V Protection with HP and Veeam John DeFrees, Global Alliance Solution Architect, Veeam Markus Berber, HP LeftHand P4000 Product Marketing Manager, HP Key takeaways from today

More information

Detailed Features. Detailed Features. EISOO AnyBackup Family 1 / 19 WWW.EISOO.COM

Detailed Features. Detailed Features. EISOO AnyBackup Family 1 / 19 WWW.EISOO.COM Detailed EISOO AnyBackup Family 1 / CONTENT Chapter 1. About AnyBackup Family... 4 Chapter 2. Detailed... 5 2.1 Data Protection... 5 2.2 Regular Backup... 6 2.3 Regular Backup and Restore for File... 7

More information

VMware vsphere Data Protection 6.1

VMware vsphere Data Protection 6.1 VMware vsphere Data Protection 6.1 Technical Overview Revised August 10, 2015 Contents Introduction... 3 Architecture... 3 Deployment and Configuration... 5 Backup... 6 Application Backup... 6 Backup Data

More information

Instant VM Recovery: Restore an entire machine from backup In a matter. U-AIR (Universal Application-Item Recovery): Recover individual objects

Instant VM Recovery: Restore an entire machine from backup In a matter. U-AIR (Universal Application-Item Recovery): Recover individual objects Backup & Replication Virtualization offers a unique value proposition, with the opportunity to reduce costs while also in-creasing service levels. Nowhere is this value proposition more apparent than with

More information

How To Make A Virtual Lab A Critical Business Tool

How To Make A Virtual Lab A Critical Business Tool Data Center Management openbench Labs Lab Test: VMware Recovery Revolution: Run VMs Directly from Backup Files via vpower Commissioned by Lab Test: VMware Recovery Revolution: Run VMs Directly from Backup

More information

Vembu BDR v2.0.2. Release Notes. Major features in v2.0.2. Other features in Vembu BDR. Cloud Disaster Recovery Service. VMware UltraBlaze.

Vembu BDR v2.0.2. Release Notes. Major features in v2.0.2. Other features in Vembu BDR. Cloud Disaster Recovery Service. VMware UltraBlaze. Vembu BDR v2.0.2 Release Notes Vembu BDR v2.0.2 is now publicly released and is available for production deployments with new features and more bug fixes which improves the stability and performance. Also,

More information

Backup and Recovery for Microsoft Hyper-V Using Best Practices Planning. Brien M. Posey

Backup and Recovery for Microsoft Hyper-V Using Best Practices Planning. Brien M. Posey Backup and Recovery for Microsoft Hyper-V Using Best Practices Planning Brien M. Posey Introduction There usually isn t anything overly complicated about backing up a physical datacenter. While it s true

More information

Solution brief: Modernized data protection with Veeam and HP Storage

Solution brief: Modernized data protection with Veeam and HP Storage Solution brief: Modernized data protection with Veeam and HP Storage Modern Data Protection Built for Virtualization November, 2013 Contents Executive summary....3 Key points...3 Virtual machine data protection

More information

W H I T E P A P E R. Understanding VMware Consolidated Backup

W H I T E P A P E R. Understanding VMware Consolidated Backup W H I T E P A P E R Contents Introduction...1 What is VMware Consolidated Backup?...1 Detailed Architecture...3 VMware Consolidated Backup Operation...6 Configuring VMware Consolidated Backup...6 Backing

More information

SynapseBackup Secure backups and disaster recovery services for both physical and virtual environments. Top reasons on why SynapseBackup is the best

SynapseBackup Secure backups and disaster recovery services for both physical and virtual environments. Top reasons on why SynapseBackup is the best SynapseBackup Secure backups and disaster recovery services for both physical and virtual environments Synapse have been both using and offering online backup solutions to clients since 1998. An online

More information

Five Fundamentals for Modern Data Center Availability

Five Fundamentals for Modern Data Center Availability Five Fundamentals for Modern Data Center Availability David Davis VMware vexpert Kirsten Stoner Product Strategy Coordinator Contents Introduction...3 Use an availability solution built for modern data

More information

Aligning your business needs with Veeam Backup & Replication

Aligning your business needs with Veeam Backup & Replication Aligning your business needs with Veeam Backup & Replication Barry Coombs & Chris Snell Modern Data Protection Built for Virtualization Introduction Backups and disaster recovery are far more important

More information

vsphere Data Protection 6.0 VDP 6.0

vsphere Data Protection 6.0 VDP 6.0 vsphere Data Protection 6.0 VDP 6.0 How to backup VMware environments? Daniel Olkowski EMC Data Protection and Availability Division Europe EAST 1 Goal of the meeting Where to use new vsphere Data Protection

More information

Veeam and the End of Windows Server 2003 Support

Veeam and the End of Windows Server 2003 Support Veeam and the End of Windows Server 2003 Support Chris Henley Microsoft Certified Professional, MCSE, MCSA and Veeam Product Strategy Specialist Executive Summary Windows Server 2003 has been a great operating

More information

Vembu BDR v2.1.0 BETA

Vembu BDR v2.1.0 BETA Release Notes Vembu BDR v2.1.0 BETA Release Notes Vembu BDR v2.1.0 BETA is now publicly released and is available for evaluation with new features and more bug fixes which improves the stability and performance.

More information

IBM Tivoli Storage FlashCopy Manager

IBM Tivoli Storage FlashCopy Manager IBM Storage FlashCopy Manager Online, near-instant snapshot backup and restore of critical business applications Highlights Perform near-instant application-aware snapshot backup and restore, with minimal

More information

Symantec NetBackup 7 Clients and Agents

Symantec NetBackup 7 Clients and Agents Complete protection for your information-driven enterprise Overview Symantec NetBackup provides a simple yet comprehensive selection of innovative clients and agents to optimize the performance and efficiency

More information

Using Emergency Restore to recover the vcenter Server has the following benefits as compared to the above methods:

Using Emergency Restore to recover the vcenter Server has the following benefits as compared to the above methods: Executive Summary This document provides certain best practices with regards to the Emergency Restore feature in vsphere Data Protection 5.5 release. It also describes the methods and processes to be used

More information

Backup Exec 15: Protecting VMware

Backup Exec 15: Protecting VMware TECHNICAL BRIEF: BACKUP EXEC 15: PROTECTING VMWARE........................................ Backup Exec 15: Protecting VMware Who should read this paper Technical White Papers are designed to introduce

More information

Virtualization backup tools: How the field stacks up

Virtualization backup tools: How the field stacks up tools: How the field Searching for the right virtual backup tools can be a grueling process. While there are plenty of available options, you must make sure to select the most effective products for a

More information

VMware Data Recovery. Product Overview

VMware Data Recovery. Product Overview VMware Data Recovery Frequently Asked Questions (FAQ), April 2009 Product Overview What is VMware Data Recovery? VMware Data Recovery is a new backup and recovery product for VMware vsphere users that

More information

What s new in 6.1. Veeam Backup & Replication

What s new in 6.1. Veeam Backup & Replication Veeam Backup & Replication What s new in 6.1 Veeam Backup & Replication now protects more than 4 million VMs in more than 40,000 organizations around the world. And although Veeam has a huge lead over

More information

Symantec Backup Exec 2010 Agent for VMware Virtual Infrastructure FAQ

Symantec Backup Exec 2010 Agent for VMware Virtual Infrastructure FAQ Symantec Backup Exec 2010 Agent for VMware Virtual Infrastructure FAQ Updated May 10, 2010 Contents Overview... 1 Virtual Machine Backup... 4 VMware vstorage API for Data Protection Support... 6 VMware

More information

Redefining Microsoft SQL Server Data Management. PAS Specification

Redefining Microsoft SQL Server Data Management. PAS Specification Redefining Microsoft SQL Server Data Management APRIL Actifio 11, 2013 PAS Specification Table of Contents Introduction.... 3 Background.... 3 Virtualizing Microsoft SQL Server Data Management.... 4 Virtualizing

More information

Symantec Backup Exec 2014

Symantec Backup Exec 2014 Symantec Backup Exec 2014 Maxim Tsvetaev Principal Systems Engineer Backup Exec 2014 1 Today s Top Backup and Recovery Challenges Reducing Costs and Complexity Protecting Virtual Machines Meeting Backup

More information

7/15/2011. Monitoring and Managing VDI. Monitoring a VDI Deployment. Veeam Monitor. Veeam Monitor

7/15/2011. Monitoring and Managing VDI. Monitoring a VDI Deployment. Veeam Monitor. Veeam Monitor Monitoring a VDI Deployment Monitoring and Managing VDI with Veeam Aseem Anwar S.E. Channel UKI Need for real-time performance metrics Detailed alerting and fault finding tools Identification of bottlenecks

More information

Finding a Home for Your VMware and Hyper-V Backups

Finding a Home for Your VMware and Hyper-V Backups Finding a Home for Your VMware and Hyper-V Backups Veeam Backup & Replication Rick Vanover vexpert, VCP, MCITP Veeam Product Strategy Specialist @RickVanover @Veeam About this webinar Technical in nature

More information

Backup Exec 15 Agents and Options

Backup Exec 15 Agents and Options DATA PROTECTION Backup Exec 15 Agents and Options Enhance and extend Backup Exec features, capabilities, and platform support Overview enhance and extend Backup Exec features, capabilities, and platform

More information

Virtually Effortless Backup for VMware Environments

Virtually Effortless Backup for VMware Environments A White Paper ly Effortless for Environments Abstract: and disaster recovery (DR) strategies protect data from corruption and failures and ensure that if these types of events occur, companies aren t forced

More information

SEP sesam Backup & Disaster Recovery Overview

SEP sesam Backup & Disaster Recovery Overview SEP sesam Backup & Disaster Recovery Overview Lanai Bayne VP of Business Development SEP Software Corp. lb@sepusa.com Christian Ruoff Sr. Technical Support Manager SEP Software Corp. cr@sep.de Why SEP

More information

VMware Data Recovery. Administrator's Guide EN-000193-00

VMware Data Recovery. Administrator's Guide EN-000193-00 Administrator's Guide EN-000193-00 You can find the most up-to-date technical documentation on the VMware Web site at: http://www.vmware.com/support/ The VMware Web site also provides the latest product

More information

BackupAssist Common Usage Scenarios

BackupAssist Common Usage Scenarios WHITEPAPER BackupAssist Version 5 www.backupassist.com Cortex I.T. Labs 2001-2008 2 Table of Contents Introduction... 3 Disaster recovery for 2008, SBS2008 & EBS 2008... 4 Scenario 1: Daily backups with

More information

Virtual Machine Backup Guide

Virtual Machine Backup Guide Virtual Machine Backup Guide ESX 4.0, ESXi 4.0 Installable and vcenter Server 4.0, Update 2 and later for ESX Server 3.5, ESX Server 3i version 3.5, VirtualCenter 2.5 This document supports the version

More information

Availability for the modern datacentre Veeam Availability Suite v8. Henk Arts Senior System Engineer (teamlead), Veeam Software Henk.arts@veeam.

Availability for the modern datacentre Veeam Availability Suite v8. Henk Arts Senior System Engineer (teamlead), Veeam Software Henk.arts@veeam. Availability for the modern datacentre Veeam Availability Suite v8 Henk Arts Senior System Engineer (teamlead), Veeam Software Henk.arts@veeam.com Availability for the your modern datacentre modern datacenter

More information

THE VM BACKUP BAKE OFF REPORT

THE VM BACKUP BAKE OFF REPORT THE VM BACKUP BAKE OFF REPORT Author: Ricky El-Qasem Revision: 1.0 Date: 23/10/2014 Website: www.virtualizeplanet.com 1 P a g e Contents 1 Executive Summary...3 2 Test Environment...3 3 The VM Backup Solutions...3

More information

DR-to-the- Cloud Best Practices

DR-to-the- Cloud Best Practices DR-to-the- Cloud Best Practices HOW TO EFFECTIVELY CONFIGURE YOUR OWN SELF-MANAGED RECOVERY PLANS AND THE REPLICATION OF CRITICAL VMWARE VIRTUAL MACHINES FROM ON-PREMISES TO A CLOUD SERVICE PROVIDER CONTENTS

More information

Confidence in a connected world. Veritas NetBackup 6.5 for VMware 3.x Best Practices

Confidence in a connected world. Veritas NetBackup 6.5 for VMware 3.x Best Practices WHITE PAPER: Best Practices Confidence in a connected world. Veritas NetBackup 6.5 for VMware 3.x Best Practices White Paper: Best Practices Veritas NetBackup 6.5 for VMware 3.x Best Practices November

More information

Availability for the modern datacentre Veeam Availability Suite v8

Availability for the modern datacentre Veeam Availability Suite v8 Availability for the modern datacentre Veeam Availability Suite v8 Aseem Anwar Senior System Engineer, Veeam Software Assem.Anwar@veeam.com Phillip Moore System Engineer, Veeam Software Phillip.Moore@veeam.com

More information

VMware vsphere 5.1 Advanced Administration

VMware vsphere 5.1 Advanced Administration Course ID VMW200 VMware vsphere 5.1 Advanced Administration Course Description This powerful 5-day 10hr/day class is an intensive introduction to VMware vsphere 5.0 including VMware ESX 5.0 and vcenter.

More information

Backup and Recovery Best Practices With CommVault Simpana Software

Backup and Recovery Best Practices With CommVault Simpana Software TECHNICAL WHITE PAPER Backup and Recovery Best Practices With CommVault Simpana Software www.tintri.com Contents Intended Audience....1 Introduction....1 Consolidated list of practices...............................

More information