NEW White Paper Expert Guide on Backing up Windows Server in Hyper-V

Size: px
Start display at page:

Download "NEW White Paper Expert Guide on Backing up Windows Server in Hyper-V"

Transcription

1 NEW White Paper Expert Guide on Backing up Windows Server in Hyper-V by John Savill, Microsoft MVP

2 John Savill Microsoft MVP John Savill is a Windows technical specialist, an 11-time MVP, an MCITP: Enterprise Administrator for Windows Server 2008, and is ITIL certified. He is the author of the popular FAQ for Windows and a senior contributing editor to Windows IT Pro. John is the author of The Complete Guide to Windows Server 2008 (Addison-Wesley), and he s currently writing his latest book, Microsoft Virtualization Secrets (Wiley). WHITE PAPER 2

3 Table of Contents Virtualization Benefits and Dangers...4 The Need For Virtual Environment Protection...5 Intelligent Guest Level Backup Advantages...7 Backup Storage Considerations...7 Restoration Processes...9 Protecting Your Protection...10 WHITE PAPER 3

4 Synopsis Microsoft s Hyper-V platform is quickly gaining market share over its competitors in the market. In this paper we will examine what you need to know to protect your virtualized workloads successfully. New Infrastructural landscape Looking at the IT Infrastructure of most organizations today and the initiatives at top of their priority list, you will see a completely different approach to virtualization and management, much different than just two years ago. If we look at how operating system provisioning is handled today, we see environments created in minutes instead of many weeks. We see a new IT infrastructural landscape with the potential to fully leverage our IT assets, provide amazing flexibility, availability and portability for our services, all contained in a smaller data center footprint. The enabler for this complete rethinking of our datacenters can be summed up in one word. Virtualization. Virtualization has driven a complete paradigm shift for every IT infrastructure. Some of the major improvements include: 1. Multiple operating systems run on a single physical host. This saves money on hardware, on licensing, on power, on datacenter space and more. 2. Hardware presented to the guest operating systems is virtualized and abstracted from the real physical hardware. This means virtual machines can easily be moved between completely different physical hosts. This flexibility is great for day-to-day running and even better for disaster recovery scenarios. 3. A higher quality of service is attainable. Operating system instances can be provisioned in real time as needed, allowing business units and end-users to self-serve through portals provided by solutions such as System Center Virtual Machine Manager. 4. Increased standardization simplifies management and simplifies adherence to regulatory and compliance requirements. Templates simplify provisioning and maintaining operating system instances. But with all its advantages, a challenge to data safety But with all of its advantages, virtualization introduces new challenges for IT departments and it can highlight existing gaps in your data infrastructure that will need closing. One of the most significant gaps is likely to be how well you re protecting your newly virtualized data and systems. Failure to do so exposes organizations to huge potential data loss, financial loss, longer system RTOs and even criminal prosecution if you fail to meet regulatory requirements. Is the virtual machine you created actually being backed up and replicated? Is its data being archived in a manner that will meet your organization s needs? If you don t know, your business faces a huge risk. To begin with, virtualization will likely increase the number of operating system instances you need to protect if you want to achieve greater resiliency to an instance. Adding more instances also means more management overhead unless you automate the configuration process. Finally you need to protect virtualization hosts. WHITE PAPER 4

5 Do I even need to back up? Nearly every service has some kind of replication built into it today; maybe it s database mirroring or log shipping, mail store replications, or multi-master replication of a directory service. Many systems have trashcans where deleted objects go before they are permanently removed. With this in mind, one could be forgiven for assuming that replication alone is plenty good enough. The answer is no, and a big no at that! While replication can deliver high availability and trashcans can help in a quick restore of objects, neither solution will save you if you have corrupted data and neither can rebuild a system. Backups are more important than ever to achieve complete protection. Can t I just back up the Hyper-V box? This may seem like a reasonable approach, requiring the least amount of work. With Hyper-V we have a management partition which is used to manage the virtual machines, perform configuration of the virtual environment and enable communication to certain types of resource like storage and network using standard Windows drivers. We can log in to this Windows Server management partition locally, remotely through protocols like RDP or just manage remotely through our management tools such as Server Manager. However, because this management partition is running Windows Server, why not just perform the backup in the management partition and tell it to back up all the virtual machines? A note on Cluster Shared Volumes One quick consideration when you re backing up Hyper-V machines is Windows Server 2008 R2 Cluster Shared Volumes (CSV). This is used for shared storage in a cluster and enables all nodes in the cluster to read and write to the same NTFS LUN simultaneously, enabled through CSV. There are a few special considerations to backing up virtual machines on a CSV enabled volume, so be sure to check if your backup software supports CSV. If it doesn t, as CSV is still quite new, make sure they re planning to add it or remove it from consideration. What happens when we back up? Every modern Windows backup application today leverages Volume Shadow Copy Service (VSS). This architecture allows application developers to ensure their applications and associated data are correctly gets backed up and can be restored. This is achieved by application vendors providing VSS Writers which perform the steps needed to ensure that (1) applications data on disk is in a backup ready state and (2) that writes are suspended to the data during the backup. With this, we ll be able to restore this application if needed and there is no risk of inconsistent data rendering the restored environment unusable! Most major applications provide VSS Writers in addition to those provided as part of the Windows operating system and key Microsoft operating system roles like Hyper-V. 1. To leverage these VSS Writers, a backup application acts as a VSS Requestor and asks the Volume Shadow Copy Service, which coordinates all the actions needed for the backup, to create a shadow copy of the requested volumes. A shadow copy is a point-in-time snapshot view of the volume, which, once created, can then be backed up to another disk or tape. 2. The Volume Shadow Copy Service enumerates all the registered VSS Writers on the system and then tells initiates a commit action that triggers the snapshot. WHITE PAPER 5

6 3. The VSS Writers are notified of the commit and each writer performs actions like flushing transactions to disk and quiescing changes to ensure their data on disk is in a backup-ready state. 4. The Volume Shadow Copy Service then tells a VSS provider, which can be software-based or hardware-based, to actually create the shadow copy of the data which is currently frozen. The VSS provider is responsible for ensuring the shadow copy is maintained until it is deleted which is typically after the backup software has finished copying the shadow copy to another location. 5. Once the shadow copy is taken (which can take a maximum of 10 seconds) the Volume Shadow Copy Service thaws the system, allowing the VSS writers to unfreeze writes to the data and resume normal operations. 6. The Volume Shadow Copy Service checks with each VSS writer to ensure that all writes were held during the shadow copy creation. If they were not held, then the shadow copy is deemed inconsistent and deleted. If shadow copy creation is successful its location is given to the VSS requestor, i.e. the backup application, which can now do whatever it wants with it. This whole process can create a shadow copy in seconds, which can then be backed up to various mediums over a far longer period of time without affecting production availability and performance. With Hyper-V, a VSS backup is actually extended beyond where we take the backup. Hyper-V has integration services installed on the guest virtual machines which allow rich communication between the Hyper-V management partition and the guest operating systems, resulting in a smooth mouse/keyboard experience, heartbeat, time synchronization, shutdown execution and snapshot integration. That s right, we can perform a VSS backup on the Hyper-V host. The Hyper-V host will actually notify each virtual machine that has the integration services installed that a VSS shadow copy is being taken. The VSS writers inside the guest operating systems will be called to ensure that data within the guest operating systems is in a backup ready state and writes are paused while the backup is taken. A backup taken at the Hyper-V host level of the virtual machines is actually integrity-assured providing the integration services are installed in the guest and the guest operating system supports VSS. This actually means it may be entirely possible to back up at the Hyper-V host level because we have the VSS notifications to the guests. But ultimately we don t care about the backup, we care about the restore and that is where backing up at the Hyper-V host level may not be enough. When I backup the VM at the host, I know that I can restore that virtual machine and it will be functional but that s what I m restoring, the entire virtual machine. You may actually be able to go a little further. When looking at your Hyper-V backup solution it s good to choose one that allows itemlevel restore from your Virtual Hard Disk (VHD) backups. This item level restore means I ve backed up the entire VHD but when I perform a restore action I can look inside the VHD and rather than restore the entire VHD, I can restore only selected files from the contained file system. This has become a lot simpler with Windows Server 2008 R2 since mounting a VHD is part of the operating system now. This ability to perform item-level restore from a VHD would be very useful if you were backing up a file server for example and just wanted to restore a single file. Now imagine the virtual machine was running SQL Server, SharePoint, Exchange or any workload that allows granular levels of restoration. Opening up the VHD and trying to perform an item-level restore will not work for SQL data or Exchange the restore would not understand the data. Instead we need to have backup agents that understand the data so it can be restored in ways that make the most sense for the data and the service being protected. Great examples are restoring a table from a database, restoring a mailbox or even mail item from a mail database and restoring a document from a SharePoint library. None of these restore types would be possible if we only performed the backup at the Hyper-V host level; we need to have backup agents within the guest operating systems for these types of workloads to enable the greatest functionality and finest granularity of restore. WHITE PAPER 6

7 The need for agents in the guest and the power that brings While we have seen backups can be taken at the Hyper-V host level, we have also seen we lose granularity in our ability to restore. This is ultimately why we perform backups, so when things go wrong and they will we don t lose state and information. This does not mean we need to install backup agents in all our guests. If we have guests running fairly basic workloads and we only need to restore the entire VM or (on rare occasions) a file, performing the backup at the Hyper-V host level is fine. By doing this, you give up the ability to do granular restores, full backups of I/O intensive applications, and the ability to restore individual files without restoring an entire virtual machine. Installing a backup agent inside the guest operating system allows the backup software to have intelligence into exactly what is running inside the virtual machine. This gives the backup administrator full flexibility into what need to be protected, how to protect it and, if a disaster happens, how to restore only what is really needed, rather than restoring the entire virtual machine. What they want to protect and how they want to protect it, interesting, but what do those two statements from the previous paragraph mean? Don t we just create a VSS shadow copy then back it up somewhere? With an agent running inside the virtual machine, we can be very particular about what we want to back up rather than backing up everything. We may decide to not back up the operating system volumes we may want to only back up particular databases on a SQL server instead of the entire data disk. Additionally our backup solution, through its knowledge of our services, may be able to go the extra mile. In addition to regularly backing up the data, it may also be able to harvest transaction logs at a more frequent interval for services that use transaction logs like databases and mail systems that can be to minimize the data lost. Configuring how often we want to back up the data may vary for each protected workload, and agents inside guests give us that flexibility. This is actually an important consideration when picking your backup solution. What types of data it supports to backup and what are its capabilities for restoration as often this is the most important aspect. If a user just deleted a mail message, I want to just restore that 1 mail item, not the entire 8GB mailbox is that possible? Don t jump to your backup solution for all types of restoration. As a best practice, many applications have their own trashcan where items that are deleted actually sit for a period of time before they are removed. They can actually be restored from this application trashcan very quickly so always look at the capabilities of your systems before instantly reaching for your backup/recovery solution. Where possible use a hybrid approach as these trashcan capabilities are no replacement for a backup solution that can give full protection from corruption and disasters. Whenever we want the most flexibility, the most control and most restore granularity, we should be thinking agent inside the guest. Where do we back it up to and what are we really backing up each time? I remember my first job when I left school 18 years ago. I was a VAX/VMS systems administrator and one of my tasks was performing the nightly backup. Backing up a system was a multi-step process- I had to remember to put the square-shaped tape in the machine before I left the office, and when I got in the next morning, switch the tape for the second tape because the backup was larger than a single tape. Then 2 hours later, I d get both tapes, put them in an envelope and put them at reception for the offsite backup service to collect for secure storage. WHITE PAPER 7

8 In the event we needed to perform a restoration, I would have to contact the archive company, get the tape back (which may not be till the next day), then hope the backup would actually work (which often didn t due to solar flares ). Times have changed The cost of disk drives has come down remarkably in recent years, while their capacity has greatly increased which makes using disks as the storage medium for our backups a viable option instead of tape. Using disks as the backup target gives increased speed over tape to perform the backup but also means the data is easily available to perform restorations from and removes many of the complexities commonly associated with tape drives and tape media. Using disks for our backup storage also allows us to store more than one backup of a data set. We can have many backups at different points in time, which is great when we come to restoring choose from what point in time we wish to restore from rather than just the last backup. If the last backup were corrupted, with additional restore points, you could go back in incremental time blocks to find the last best backup, corruption free. This brings us nicely into another advantage of disk as the backup medium. When we think of traditional backup methods on tape, it was common to perform a full backup at the start of the week which contained all the data, then each day perform an incremental backup which only contained the files that had changed that day. This was much faster to perform and required less storage than a full backup. If you had a loss on Friday, you would have to restore Monday s tape, then Tuesday s, then Wednesday s and then Thursday s a huge waste of time and a huge headache. This method is very important with today s backup architectures; in fact more so since the backup data is now sent over the network to the backup server, which connects to the storage. We actually go one better than an incremental backup which backed up entire files that changed that day. This would not work well today when you consider today s files can be gigabytes in size, but may have only had a few kilobytes of change. Look for a backup solution that uses block level backups which will reduce the amount of disk space you need to store the backups and more importantly cut down on network bandwidth used during the backup. The way these block level backups work does vary but is essentially the following: 1. The first time a new backup source is protected, a full backup of all the data is performed and stored on the backup server. This is the only time the entire data set is copied over the network. 2. For subsequent backups only, the blocks on disk that relate to the protected data that have changed are copied to the backup server, meaning the data copied over the network directly relates to the amount of change. These backups should occur at whatever interval meets your targets around maximum amount of acceptable data loss. 3. If your organization has Recovery-Point Objecting (RPO) of 4 hours, we need to make sure we perform these backups at least every 4 hours. This frequency will also be available when you come to perform a restore so if you backup every 4 hours, you would be able to select the restore point in 4 hour increments. 4. Many backup solutions may give you the option of merging these point in time views that are older than x days or y weeks in order to clean up your views, as it will become unlikely that you would need 4 hour granularity of a restore from 3 weeks ago. 5. The backup server looks at the blocks in the current view of the data that are being replaced, moves them to a previous point in time slice so they are maintained for performing restorations at that point in time, then writes the latest blocks so a current view is available. 6. Organizations may still want tape or Blu-ray disc copies for offsite storage or very long term archiving, so support for tape may be a factor in your backup selection. Often, solutions will allow a point-in-time view of the data to be exported to tape. WHITE PAPER 8

9 For offsite backup needs such as disaster recovery, it s actually very common to have an instance of the backup solution at the disaster recovery location, with its own disks that actually protect the primary backup instance and data at the main datacenter location. The DR backup instance may protect all data from the primary backup instance or only the really important data and servers. In the event of a disaster recovery, this is just as fast at the backup site as at the primary. The final piece, restoration! We ve already discussed the granularity of restoration that is possible with a top grade backup and recovery solution. Being able to restore not only from multiple points-in-time but also only restoring the data we want to restore instead of entire containers of data. There are other restoration considerations. Disasters and total server losses bring us to another important capability performing bare metal recoveries of our servers. If a server has to be completely restored from the backup or has to be replaced, we need to be able to restore the latest complete backup of a server, then apply the latest protected data from that server. We may want to perform this restoration by booting the physical box over the network using PXE boot or boot from a CD or USB key to initiate the restore. Consider what works best for your organization and make sure you choose a solution that meets that. The complete server loss or even worse a site loss brings up another interesting capability some backup solutions offer. The ability to run in a virtual standby mode can be very useful when a physical server hosted OS instance (not a virtual machine) fails but you don t have physical hardware available. Some solutions allow you to restore the backup of a physical server to a virtual machine and it automatically takes care of hardware differences allowing your server to be back up and running even though you don t have physical boxes available. This can be critical when you have aggressive Recovery Time Objectives (RTO) to meet. Remember when I recounted my early days as a IT admin when after getting back my backup tapes, I hoped the restore would actually work? This is not acceptable. The scenario of a failed restore can be avoided with 2 actions: 1. Have a solid restore process in-place and test routinely. With any change in hardware, software or personnel, run the restore test again to ensure it is still fully functional. 2. Make sure your backups integrity is assured. The best way to make sure the backup integrity is sound is for the backup solution to perform regular integrity checks when the backup data is received either using integrity checking capabilities provided by the application such as Exchange Eseutil or for file system protection through actions like Chkdsk. By performing these integrity checks on the backup system, we are assured our protected data will be usable and we are not burdening the source systems with the workload of performing the integrity validation. We get the best of both worlds. WHITE PAPER 9

10 Who watches the watchmen? We know how important our data and systems are we have invested great resources and efforts to get a comprehensive and functional backup solution in place, but what is protecting that backup system from corruption or loss? The use of a second backup solution at the DR site protecting the primary backup solution at the datacenter has already been discussed however using the DR backup solution for normal day-to-day restorations in the main datacenter would not be desirable as all the data would have to flow over the WAN between sites. Instead understand the dependencies of your backup solution. If the backup solution uses SQL to store its configuration and metadata and if that SQL server failed your backup solution it would be useless and unable to mitigate this use of a SQL instance that is part of a highly available SQL cluster. Whatever the dependencies are, try and mitigate any single point of failure. Final thoughts Virtualization is a fantastic revolution of the way we look at IT, it enables completely new ways to how we manage, provision and look at our infrastructure. Virtualization does not simplify our backup approach and as we ve looked at in this paper there are actually more considerations with protecting our virtual environments and ensuring no loss of capability or granularity but by investigating the backup solutions and choosing the right one we can actually make backup and more importantly restore an intuitive and functional part of our infrastructure. WHITE PAPER 10

Hyper-V backup implementation guide

Hyper-V backup implementation guide Hyper-V backup implementation guide A best practice guide for Hyper-V backup administrators. www.backup-assist.ca Contents 1. Planning a Hyper-V backup... 2 Hyper-V backup considerations... 2 2. Hyper-V

More information

Library Recovery Center

Library Recovery Center Library Recovery Center Ever since libraries began storing bibliographic information on magnetic disks back in the 70 s, the challenge of creating useful back-ups and preparing for a disaster recovery

More information

One Solution for Real-Time Data protection, Disaster Recovery & Migration

One Solution for Real-Time Data protection, Disaster Recovery & Migration One Solution for Real-Time Data protection, Disaster Recovery & Migration Built-in standby virtualisation server Backs up every 15 minutes up to 12 servers On and Off-site Backup User initialed file, folder

More information

Backup and Recovery 1

Backup and Recovery 1 Backup and Recovery What is a Backup? Backup is an additional copy of data that can be used for restore and recovery purposes. The Backup copy is used when the primary copy is lost or corrupted. This Backup

More information

WHITE PAPER: ENTERPRISE SECURITY. Symantec Backup Exec Quick Recovery and Off-Host Backup Solutions

WHITE PAPER: ENTERPRISE SECURITY. Symantec Backup Exec Quick Recovery and Off-Host Backup Solutions WHITE PAPER: ENTERPRISE SECURITY Symantec Backup Exec Quick Recovery and Off-Host Backup Solutions for Microsoft Exchange Server 2003 and Microsoft SQL Server White Paper: Enterprise Security Symantec

More information

NSI Solutions with Microsoft VSS

NSI Solutions with Microsoft VSS Published: March 2004 Abstract With the introduction of Volume Shadow Copy Service (VSS) in Microsoft Windows Server 2003 and Windows Storage Server 2003 and the strength of NSI Software Double-Take you

More information

System Protection for Hyper-V Whitepaper

System Protection for Hyper-V Whitepaper Whitepaper Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Hyper-V requirements... 2 Definitions... 3 Considerations... 3 2. About the BackupAssist Hyper-V solution... 4 Advantages... 4

More information

BackupAssist v6 quickstart guide

BackupAssist v6 quickstart guide New features in BackupAssist v6... 2 VSS application backup (Exchange, SQL, SharePoint)... 3 System State backup... 3 Restore files, applications, System State and mailboxes... 4 Fully cloud ready Internet

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

WHITE PAPER PPAPER. Symantec Backup Exec Quick Recovery & Off-Host Backup Solutions. for Microsoft Exchange Server 2003 & Microsoft SQL Server

WHITE PAPER PPAPER. Symantec Backup Exec Quick Recovery & Off-Host Backup Solutions. for Microsoft Exchange Server 2003 & Microsoft SQL Server WHITE PAPER PPAPER Symantec Backup Exec Quick Recovery & Off-Host Backup Solutions Symantec Backup Exec Quick Recovery & Off-Host Backup Solutions for Microsoft Exchange Server 2003 & Microsoft SQL Server

More information

Backup 2.0: un opportunità bestiale. Todd Fredrick Executive Vice President Sales&Marketing e Cofounder di AppAssure

Backup 2.0: un opportunità bestiale. Todd Fredrick Executive Vice President Sales&Marketing e Cofounder di AppAssure Backup 2.0: un opportunità bestiale Todd Fredrick Executive Vice President Sales&Marketing e Cofounder di AppAssure Achab Achab Open Forum 2011 About AppAssure Software Fast Facts: Founded in 2006 Former

More information

Don t Hyper-Ventilate over Hyper-V backup!

Don t Hyper-Ventilate over Hyper-V backup! Don t Hyper-Ventilate over Hyper-V backup! A straightforward solution to Hyper-V backup Presented by Linus Chang, Lead Developer of BackupAssist The theme of today is... Hyper-V! Today s agenda 1. The

More information

A review of BackupAssist within a Hyper-V Environment

A review of BackupAssist within a Hyper-V Environment A review of BackupAssist within a Hyper-V Environment By Brien Posey Contents Introduction... 2 An Introduction to BackupAssist... 3 Testing Methodologies... 4 Test 1: Restore a Virtual Machine s Configuration...

More information

Part Two: Technology overview

Part Two: Technology overview Already covered: Part One: Introduction to BackupAssist Now: Part Two: Technology overview 64 Backup Rsync Backups Still to come: Part Three: Putting it all together Server 2008 family. Image your entire

More information

A review of BackupAssist within a Hyper-V Environment. By Brien Posey

A review of BackupAssist within a Hyper-V Environment. By Brien Posey A review of BackupAssist within a Hyper-V Environment By Brien Posey 2 Contents Introduction... 3 An Introduction to BackupAssist... 4 Testing Methodologies... 5 Test 1: Restore a Virtual Machine s Configuration...

More information

BackupAssist v6 quickstart guide

BackupAssist v6 quickstart guide Using the new features in BackupAssist v6... 2 VSS application backup (Exchange, SQL, SharePoint)... 2 Backing up VSS applications... 2 Restoring VSS applications... 3 System State backup and restore...

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

Version: 1.5 2014 Page 1 of 5

Version: 1.5 2014 Page 1 of 5 Version: 1.5 2014 Page 1 of 5 1.0 Overview A backup policy is similar to an insurance policy it provides the last line of defense against data loss and is sometimes the only way to recover from a hardware

More information

High Availability and Disaster Recovery for Exchange Servers Through a Mailbox Replication Approach

High Availability and Disaster Recovery for Exchange Servers Through a Mailbox Replication Approach High Availability and Disaster Recovery for Exchange Servers Through a Mailbox Replication Approach Introduction Email is becoming ubiquitous and has become the standard tool for communication in many

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

How To Use A Recoverypoint Server Appliance For A Disaster Recovery

How To Use A Recoverypoint Server Appliance For A Disaster Recovery One Solution for Real-Time Data protection, Disaster Recovery & Migration Built-in standby virtualisation server Backs up every 15 minutes up to 12 servers On and Off-site Backup Exchange Mailbox & Message

More information

BackupAssist v5 vs. v6

BackupAssist v5 vs. v6 COMPARISON www.backupassist.com 2 What s new in BackupAssist version 6? There are three main reasons why you should upgrade to BackupAssist v6: 1. To keep up with the latest best practice backup standards

More information

AVLOR SERVER CLOUD RECOVERY

AVLOR SERVER CLOUD RECOVERY AVLOR SERVER CLOUD RECOVERY WHITE PAPER 1 Table of Contents Abstract... 2 1. Introduction... 3 2. Server Cloud Recovery... 3 3. Amazon AWS Cloud... 4 a. What it is... 4 b. Why Use AWS?... 5 4. Difficulties

More information

Windows Server 2008 Hyper-V Backup and Replication on EMC CLARiiON Storage. Applied Technology

Windows Server 2008 Hyper-V Backup and Replication on EMC CLARiiON Storage. Applied Technology Windows Server 2008 Hyper-V Backup and Replication on EMC CLARiiON Storage Applied Technology Abstract This white paper provides an overview of the technologies that are used to perform backup and replication

More information

Enterprise Backup and Restore technology and solutions

Enterprise Backup and Restore technology and solutions Enterprise Backup and Restore technology and solutions LESSON VII Veselin Petrunov Backup and Restore team / Deep Technical Support HP Bulgaria Global Delivery Hub Global Operations Center November, 2013

More information

Hyper-V Protection. User guide

Hyper-V Protection. User guide Hyper-V Protection User guide Contents 1. Hyper-V overview... 2 Documentation... 2 Licensing... 2 Hyper-V requirements... 2 Windows Server 2012 Hyper-V support... 3 2. Hyper-V protection features... 3

More information

The next generation, proven, affordable way to protect business using disk-based recovery

The next generation, proven, affordable way to protect business using disk-based recovery REAL-TIME RECOVERY The next generation, proven, affordable way to protect business using disk-based recovery StorageCraft Technology Corporation Leading the Way to Safer Computing 2006 StorageCraft Technology

More information

16 Common Backup Problems & Mistakes

16 Common Backup Problems & Mistakes 16 Common Backup Problems & Mistakes 1. Tape errors, Tape Drive failures. Probably the number one backup problem is simply caused by the unreliability of tape. Tape drives have a higher failure rate than

More information

Hyper-V Protection. User guide

Hyper-V Protection. User guide Hyper-V Protection User guide Contents 1. Hyper-V overview... 2 Documentation... 2 Licensing... 2 Hyper-V requirements... 2 2. Hyper-V protection features... 3 Windows 2012 R1/R2 Hyper-V support... 3 Custom

More information

Showcasing ICT Innovation. Virtual Server Technology

Showcasing ICT Innovation. Virtual Server Technology Showcasing ICT Innovation Virtual Server Technology Thanks This booklet has been made possible by grant funding from the Office for the Community Sector, Department of Planning and Community Development.

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

Nutanix Tech Note. Data Protection and Disaster Recovery

Nutanix Tech Note. Data Protection and Disaster Recovery Nutanix Tech Note Data Protection and Disaster Recovery Nutanix Virtual Computing Platform is engineered from the ground-up to provide enterprise-grade availability for critical virtual machines and data.

More information

Vodacom Managed Hosted Backups

Vodacom Managed Hosted Backups Vodacom Managed Hosted Backups Robust Data Protection for your Business Critical Data Enterprise class Backup and Recovery and Data Management on Diverse Platforms Vodacom s Managed Hosted Backup offers

More information

Protecting Microsoft Hyper-V 3.0 Environments with CA ARCserve

Protecting Microsoft Hyper-V 3.0 Environments with CA ARCserve Solution Brief: CA ARCserve R16.5 Complexity ate my budget Protecting Microsoft Hyper-V 3.0 Environments with CA ARCserve Customer Challenges Today, you face demanding service level agreements (SLAs) while

More information

Protecting Desktop and Laptop Workstations with CA ARCserve D2D r16

Protecting Desktop and Laptop Workstations with CA ARCserve D2D r16 WHITE PAPER: PROTECTING DESKTOP AND LAPTOP WORKSTATIONS WITH CA ARCSERVE D2D R16 Protecting Desktop and Laptop Workstations with CA ARCserve D2D r16 October 2011 CA Technologies DATA MANAGEMENT CUSTOMER

More information

CA ARCserve Family r15

CA ARCserve Family r15 CA ARCserve Family r15 Rami Nasser EMEA Principal Consultant, Technical Sales Rami.Nasser@ca.com The ARCserve Family More than Backup The only solution that: Gives customers control over their changing

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

How To Backup Your Computer With A File Copy Engine

How To Backup Your Computer With A File Copy Engine Secondary Backup Entire System Including Windows Installation Data Files, Emails, Databases, Documents Not Important Important Critical Ultra Critical Secondary Backup Data Archival Backup Secondary Backup

More information

Backup and Archiving Explained. White Paper

Backup and Archiving Explained. White Paper Backup and Archiving Explained White Paper Backup vs. Archiving The terms backup and archiving are often referenced together and sometimes incorrectly used interchangeably. While both technologies are

More information

VIPERVAULT STORAGECRAFT SHADOWPROTECT SETUP GUIDE

VIPERVAULT STORAGECRAFT SHADOWPROTECT SETUP GUIDE VIPERVAULT STORAGECRAFT SHADOWPROTECT SETUP GUIDE Solution Overview Thank you for choosing the ViperVault cloud replication, backup and disaster recovery service. Using this service you can replicate your

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

Overview of System Center 2012 Data Protection Manager

Overview of System Center 2012 Data Protection Manager Overview of System Center 2012 Data Protection Manager J IM R AT SCH S R. PFE II J R AT SCH@MICROSOFT.COM DMVMUG User Conference 2013 Reston, VA Agenda What is System Center Data Protection Manager 2012?

More information

Exchange Data Protection: To the DAG and Beyond. Whitepaper by Brien Posey

Exchange Data Protection: To the DAG and Beyond. Whitepaper by Brien Posey Exchange Data Protection: To the DAG and Beyond Whitepaper by Brien Posey Exchange is Mission Critical Ask a network administrator to name their most mission critical applications and Exchange Server is

More information

Optimized data protection through one console for physical and virtual systems, including VMware and Hyper-V virtual systems

Optimized data protection through one console for physical and virtual systems, including VMware and Hyper-V virtual systems Symantec Backup Exec 12.5 for Windows Small Business Server Premium and Standard Editions Comprehensive data protection and system recovery for Microsoft Windows Small Business Server Overview Symantec

More information

OPTIMIZING EXCHANGE SERVER IN A TIERED STORAGE ENVIRONMENT WHITE PAPER NOVEMBER 2006

OPTIMIZING EXCHANGE SERVER IN A TIERED STORAGE ENVIRONMENT WHITE PAPER NOVEMBER 2006 OPTIMIZING EXCHANGE SERVER IN A TIERED STORAGE ENVIRONMENT WHITE PAPER NOVEMBER 2006 EXECUTIVE SUMMARY Microsoft Exchange Server is a disk-intensive application that requires high speed storage to deliver

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

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

BDR TM V3.0 DEPLOYMENT AND FEATURES

BDR TM V3.0 DEPLOYMENT AND FEATURES BDR TM V3.0 DEPLOYMENT AND FEATURES 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 of

More information

SHAREPOINT, SQL, AND EXCHANGE BACKUP IN VIRTUAL AND PHYSICAL ENVIRONMENTS

SHAREPOINT, SQL, AND EXCHANGE BACKUP IN VIRTUAL AND PHYSICAL ENVIRONMENTS SHAREPOINT, SQL, AND EXCHANGE BACKUP IN VIRTUAL AND PHYSICAL ENVIRONMENTS CTO Series: Dr. Mark Campbell, Chief Strategy/Technology Officer, Unitrends INTRODUCTION Enterprise Windows demands enterprise-class

More information

Protecting Windows Microsoft Exchange Server Data Protection

Protecting Windows Microsoft Exchange Server Data Protection Solution Brief Protecting Microsoft Exchange Server Growth in data for Microsoft Exchange is expanding at a rapid growth rate. Mailbox sizes are increasing due to multimedia file, documentation collaboration

More information

Data Protection. the data. short retention. event of a disaster. - Different mechanisms, products for backup and restore based on retention and age of

Data Protection. the data. short retention. event of a disaster. - Different mechanisms, products for backup and restore based on retention and age of s t o r s i m p l e D a t a s h e e t Data Protection I/T organizations struggle with the complexity associated with defining an end-to-end architecture and processes for data protection and disaster recovery.

More information

Disaster Recovery. Maximizing Business Continuity and Minimizing Recovery Time Objectives in Windows Server Environments.

Disaster Recovery. Maximizing Business Continuity and Minimizing Recovery Time Objectives in Windows Server Environments. Disaster Recovery Maximizing Business Continuity and Minimizing Recovery Time Objectives in Windows Server Environments Executive Summary TechAdvisory.org SME Reports sponsored by D-Net is your partner

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

System Protection for Hyper-V User Guide

System Protection for Hyper-V User Guide User Guide BackupAssist User Guides explain how to create and modify backup jobs, create backups and perform restores. These steps are explained in more detail in a guide s respective whitepaper. Whitepapers

More information

BACKUP ESSENTIALS FOR PROTECTING YOUR DATA AND YOUR BUSINESS. Disasters happen. Don t wait until it s too late.

BACKUP ESSENTIALS FOR PROTECTING YOUR DATA AND YOUR BUSINESS. Disasters happen. Don t wait until it s too late. BACKUP ESSENTIALS FOR PROTECTING YOUR DATA AND YOUR BUSINESS Disasters happen. Don t wait until it s too late. OVERVIEW It s inevitable. At some point, your business will experience data loss. It could

More information

Perforce Backup Strategy & Disaster Recovery at National Instruments

Perforce Backup Strategy & Disaster Recovery at National Instruments Perforce Backup Strategy & Disaster Recovery at National Instruments Steven Lysohir National Instruments Perforce User Conference April 2005-1 - Contents 1. Introduction 2. Development Environment 3. Architecture

More information

Data Protection. for Virtual Data Centers. Jason Buffington. Wiley Publishing, Inc. WILEY

Data Protection. for Virtual Data Centers. Jason Buffington. Wiley Publishing, Inc. WILEY Data Protection for Virtual Data Centers Jason Buffington WILEY Wiley Publishing, Inc. Contents Introduction xix Chapter l What Kind of Protection Do You Need? In the Beginning, There Were Disk and Tape

More information

Sharepoint, SQL, And Exchange Backup In Virtual And Physical Environments

Sharepoint, SQL, And Exchange Backup In Virtual And Physical Environments Whitepaper Sharepoint, SQL, And Exchange Backup In Virtual And Physical Environments CTO Series: Dr. Mark Campbell, Chief Strategy/Technology Officer, Unitrends 2 Introduction Enterprise Windows demands

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

Deploying Microsoft Hyper-V with Dell EqualLogic PS Series Arrays

Deploying Microsoft Hyper-V with Dell EqualLogic PS Series Arrays TECHNICAL REPORT Deploying Microsoft Hyper-V with Dell EqualLogic PS Series Arrays ABSTRACT This technical report details information and best practices for deploying Microsoft Hyper-V with Dell EqualLogic

More information

WHITE PAPER THE BENEFITS OF CONTINUOUS DATA PROTECTION. SYMANTEC Backup Exec 10d Continuous Protection Server

WHITE PAPER THE BENEFITS OF CONTINUOUS DATA PROTECTION. SYMANTEC Backup Exec 10d Continuous Protection Server WHITE PAPER THE BENEFITS OF CONTINUOUS DATA PROTECTION SYMANTEC Backup Exec 10d Continuous Protection Server 1 TABLE OF CONTENTS EXECUTIVE SUMMARY...3 Current Situation...3 The New Opportunity...3 The

More information

Data Backup Options for SME s

Data Backup Options for SME s Data Backup Options for SME s As an IT Solutions company, Alchemy are often asked what is the best backup solution? The answer has changed over the years and depends a lot on your situation. We recognize

More information

Protecting Microsoft SQL Server with an Integrated Dell / CommVault Solution. Database Solutions Engineering

Protecting Microsoft SQL Server with an Integrated Dell / CommVault Solution. Database Solutions Engineering Protecting Microsoft SQL Server with an Integrated Dell / CommVault Solution Database Solutions Engineering By Subhashini Prem and Leena Kushwaha Dell Product Group March 2009 THIS WHITE PAPER IS FOR INFORMATIONAL

More information

MICROSOFT EXCHANGE 2003. best practices BEST PRACTICES - DATA STORAGE SETUP

MICROSOFT EXCHANGE 2003. best practices BEST PRACTICES - DATA STORAGE SETUP MICROSOFT EXCHANGE 2003 best practices BEST PRACTICES - DATA STORAGE SETUP TABLE OF CONTENTS E-mail has become a business critical communication tool 3 Build a disaster recovery solution with VSS and Data

More information

Using Hitachi Protection Manager and Hitachi Storage Cluster software for Rapid Recovery and Disaster Recovery in Microsoft Environments

Using Hitachi Protection Manager and Hitachi Storage Cluster software for Rapid Recovery and Disaster Recovery in Microsoft Environments Using Hitachi Protection Manager and Hitachi Storage Cluster software for Rapid Recovery and Disaster Recovery in Microsoft Environments Robert Burch, Advanced Technical Consultant Leland Sindt, Principal

More information

TECHNOLOGY OVERVIEW INTRONIS CLOUD BACKUP & RECOVERY

TECHNOLOGY OVERVIEW INTRONIS CLOUD BACKUP & RECOVERY INTRONIS CLOUD BACKUP & RECOVERY TECHNOLOGY OVERVIEW CONTENTS Introduction 3 Ease-of-Use 3 Simple Installation 3 Automatic Backup 3 Backup Status Dashboard 4 Off-Site Storage 4 Scalability 4 File Restoration

More information

How do you test to determine which backup and restore technology best suits your business needs?

How do you test to determine which backup and restore technology best suits your business needs? KEY CRITERIA WHEN SELECTING BACKUP AND RESTORE TECHNOLOGY FOR WINDOWS SYSTEMS How do you test to determine which backup and restore technology best suits your business needs? Real-Time Recovery delivers

More information

Windows Small Business Server Backup and Recovery Software Replay for Small Business Server Developed by AppAssure Software an industry-leading manufacturer of application backup and recovery solutions

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

Maximizing Business Continuity and Minimizing Recovery Time Objectives in Windows Server Environments

Maximizing Business Continuity and Minimizing Recovery Time Objectives in Windows Server Environments Maximizing Business Continuity and Minimizing Recovery Time Objectives in Windows Server Environments StorageCraft Technology Corporation Backup Fast, Recover Faster 2010 StorageCraft Technology Corporation.

More information

Nutanix Solution Note

Nutanix Solution Note Nutanix Solution Note Version 1.0 April 2015 2 Copyright 2015 Nutanix, Inc. All rights reserved. This product is protected by U.S. and international copyright and intellectual property laws. Nutanix is

More information

Best Practices for Architecting Storage in Virtualized Environments

Best Practices for Architecting Storage in Virtualized Environments Best Practices for Architecting Storage in Virtualized Environments Leverage Advances in Storage Technology to Accelerate Performance, Simplify Management, and Save Money in Your Virtual Server Environment

More information

System Protection Whitepaper

System Protection Whitepaper Whitepaper Contents 1. Introduction... 2 Licensing... 2 Operating system considerations... 2 Advantages and disadvantages of Windows Server Backup... 3 BackupAssist: Enhancements to Windows Server Backup....

More information

High Availability with Windows Server 2012 Release Candidate

High Availability with Windows Server 2012 Release Candidate High Availability with Windows Server 2012 Release Candidate Windows Server 2012 Release Candidate (RC) delivers innovative new capabilities that enable you to build dynamic storage and availability solutions

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

Protecting the Microsoft Data Center with NetBackup 7.6

Protecting the Microsoft Data Center with NetBackup 7.6 Protecting the Microsoft Data Center with NetBackup 7.6 Amit Sinha NetBackup Product Management 1 Major Components of a Microsoft Data Center Software Hardware Servers Disk Tape Networking Server OS Applications

More information

WHITE PAPER: DATA PROTECTION. Veritas NetBackup for Microsoft Exchange Server Solution Guide. Bill Roth January 2008

WHITE PAPER: DATA PROTECTION. Veritas NetBackup for Microsoft Exchange Server Solution Guide. Bill Roth January 2008 WHITE PAPER: DATA PROTECTION Veritas NetBackup for Microsoft Exchange Server Solution Guide Bill Roth January 2008 White Paper: Veritas NetBackup for Microsoft Exchange Server Solution Guide Content 1.

More information

STORAGECRAFT SHADOWPROTECT 5 SERVER/SMALL BUSINESS SERVER

STORAGECRAFT SHADOWPROTECT 5 SERVER/SMALL BUSINESS SERVER STORAGECRAFT SHADOWPROTECT 5 SERVER/SMALL BUSINESS SERVER PRODUCT BRIEF 1 THE CHALLENGE OF BUSINESS CONTINUITY Maximizing business continuity while minimizing business disruption can be especially challenging

More information

SnapManager 5.0 for Microsoft Exchange Best Practices Guide

SnapManager 5.0 for Microsoft Exchange Best Practices Guide NETAPP TECHNICAL REPORT SnapManager 5.0 for Microsoft Exchange s Guide Shannon Flynn, NetApp November 2008 TR-3730 Table of Contents 1 EXECUTIVE SUMMARY... 3 1.1 PURPOSE AND SCOPE... 3 1.2 INTENDED AUDIENCE...

More information

DISK IMAGE BACKUP. For Physical Servers. VEMBU TECHNOLOGIES www.vembu.com TRUSTED BY OVER 25,000 BUSINESSES

DISK IMAGE BACKUP. For Physical Servers. VEMBU TECHNOLOGIES www.vembu.com TRUSTED BY OVER 25,000 BUSINESSES DISK IMAGE BACKUP For Physical Servers 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

Best Practices for Virtualised SharePoint

Best Practices for Virtualised SharePoint Best Practices for Virtualised SharePoint Brendan Law Blaw@td.com.au @FlamerNZ Flamer.co.nz/spag/ Nathan Mercer Nathan.Mercer@microsoft.com @NathanM blogs.technet.com/nmercer/ Agenda Why Virtualise? Hardware

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

Frequently Asked Questions about Cloud and Online Backup

Frequently Asked Questions about Cloud and Online Backup Frequently Asked Questions about Cloud and Online Backup With more companies realizing the importance of protecting their mission-critical data, we know that businesses are also evaluating the resiliency

More information

The Benefits of Virtualization for Your DR Plan

The Benefits of Virtualization for Your DR Plan E-Guide The Benefits of Virtualization for Your DR Plan Server virtualization is making a positive impact in the area of disaster recovery. Through virtualization, organizations can save money, as well

More information

Pervasive PSQL Meets Critical Business Requirements

Pervasive PSQL Meets Critical Business Requirements Pervasive PSQL Meets Critical Business Requirements Pervasive PSQL White Paper May 2012 Table of Contents Introduction... 3 Data Backup... 3 Pervasive Backup Agent... 3 Pervasive PSQL VSS Writer... 5 Pervasive

More information

Windows Application and Server Backup 2.0

Windows Application and Server Backup 2.0 The Definitive Guide tm To Windows Application and Server Backup 2.0 HOME OF BACKUP 2.0 Ch apter 7: Virtualization Server Backups... 113 Native Solutions... 113 Problems and Challenges... 113 In the Old

More information

Unitrends Integrated Backup and Recovery of Microsoft SQL Server Environments

Unitrends Integrated Backup and Recovery of Microsoft SQL Server Environments Solution Brief Unitrends Integrated Backup and Recovery of Microsoft SQL Server Environments Summary Your business infrastructure relies on your Microsoft SQL Servers. Your business no matter the size

More information

System Image Backup and Recovery

System Image Backup and Recovery System Image Backup and Recovery Enveloc s new System and Drive Imaging feature is an important part of an effective disaster recovery plan and can allow you to restore a machine after a complete crash

More information

How to Manage Critical Data Stored in Microsoft Exchange Server 2010. By Hitachi Data Systems

How to Manage Critical Data Stored in Microsoft Exchange Server 2010. By Hitachi Data Systems W H I T E P A P E R How to Manage Critical Data Stored in Microsoft Exchange Server 2010 By Hitachi Data Systems April 2012 2 Table of Contents Executive Summary and Introduction 3 Mission-critical Microsoft

More information

TABLE OF CONTENTS THE SHAREPOINT MVP GUIDE TO ACHIEVING HIGH AVAILABILITY FOR SHAREPOINT DATA. Introduction. Examining Third-Party Replication Models

TABLE OF CONTENTS THE SHAREPOINT MVP GUIDE TO ACHIEVING HIGH AVAILABILITY FOR SHAREPOINT DATA. Introduction. Examining Third-Party Replication Models 1 THE SHAREPOINT MVP GUIDE TO ACHIEVING HIGH AVAILABILITY TABLE OF CONTENTS 3 Introduction 14 Examining Third-Party Replication Models 4 Understanding Sharepoint High Availability Challenges With Sharepoint

More information

System Center 2012 Suite SYSTEM CENTER 2012 SUITE. BSD BİLGİSAYAR Adana

System Center 2012 Suite SYSTEM CENTER 2012 SUITE. BSD BİLGİSAYAR Adana 2013 System Center 2012 Suite SYSTEM CENTER 2012 SUITE BSD BİLGİSAYAR Adana Configure and manage apps, services, computers, and VMs... 1 Operations Manager... 3 Configuration Manager... 4 Endpoint Protection...

More information

Integrating Data Protection Manager with StorTrends itx

Integrating Data Protection Manager with StorTrends itx Integrating Data Protection Manager with StorTrends itx INTEGRATING DATA PROTECTION MANAGER WITH STORTRENDS ITX 2 1. Introduction 2 2. Test Environment 2 Requirements 2 3. Setting up the Application Servers

More information

excepta Solutions Backup & Disaster Recovery Services and software overview Tel. +31 (0)88 555 3444 info@ncoactive.com www.ncoactive.

excepta Solutions Backup & Disaster Recovery Services and software overview Tel. +31 (0)88 555 3444 info@ncoactive.com www.ncoactive. excepta Solutions Services and software overview Backup & Disaster Recovery Tel. +31 (0)88 555 3444 info@ncoactive.com www.ncoactive.com INDEX Index... 2 Introduction to ncoactive... 3 Solutions provided

More information

Archive Data Retention & Compliance. Solutions Integrated Storage Appliances. Management Optimized Storage & Migration

Archive Data Retention & Compliance. Solutions Integrated Storage Appliances. Management Optimized Storage & Migration Solutions Integrated Storage Appliances Management Optimized Storage & Migration Archive Data Retention & Compliance Services Global Installation & Support SECURING THE FUTURE OF YOUR DATA w w w.q sta

More information

1. Overview... 2 Documentation... 2 Licensing... 2 Operating system considerations... 2

1. Overview... 2 Documentation... 2 Licensing... 2 Operating system considerations... 2 User Guide BackupAssist User Guides explain how to create and modify backup jobs, create backups and perform restores. These steps are explained in more detail in a guide s respective whitepaper. Whitepapers

More information

Backup Exec 2014: Protecting Microsoft SharePoint

Backup Exec 2014: Protecting Microsoft SharePoint TECHNICAL BRIEF: BACKUP EXEC 2014: PROTECTING MICROSOFT SHAREPOINT........................................ Backup Exec 2014: Protecting Microsoft SharePoint Who should read this paper Technical White Papers

More information

Enterprise Storage Solution for Hyper-V Private Cloud and VDI Deployments using Sanbolic s Melio Cloud Software Suite April 2011

Enterprise Storage Solution for Hyper-V Private Cloud and VDI Deployments using Sanbolic s Melio Cloud Software Suite April 2011 Enterprise Storage Solution for Hyper-V Private Cloud and VDI Deployments using Sanbolic s Melio Cloud Software Suite April 2011 Executive Summary Large enterprise Hyper-V deployments with a large number

More information

Real-time Protection for Hyper-V

Real-time Protection for Hyper-V 1-888-674-9495 www.doubletake.com Real-time Protection for Hyper-V Real-Time Protection for Hyper-V Computer virtualization has come a long way in a very short time, triggered primarily by the rapid rate

More information

Availability Guide for Deploying SQL Server on VMware vsphere. August 2009

Availability Guide for Deploying SQL Server on VMware vsphere. August 2009 Availability Guide for Deploying SQL Server on VMware vsphere August 2009 Contents Introduction...1 SQL Server 2008 with vsphere and VMware HA/DRS...2 Log Shipping Availability Option...4 Database Mirroring...

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