RapidSeed for Replicating Systems Version 7.4

Size: px
Start display at page:

Download "RapidSeed for Replicating Systems Version 7.4"

Transcription

1 RapidSeed for Replicating Systems Version Technology Circle, Suite 100 Columbia, SC Phone:

2 Contents Overview...3 Supported seed devices by system...4 Prerequisites...4 General prerequisites... 4 Suspend or disable replication... 5 Option 1: Suspend replication... 5 Option 2: Disable replication at the client, virtual machine, and application level... 5 On-premise configuration...7 Using a seeding drive (esata or USB)... 7 Using the Unitrends NAS device for seeding Off-premise configuration Using an esata or USB seeding drive Using the Unitrends NAS seeding device

3 RapidSeed for Replicating Systems Overview Replication is the electronic transfer of data from an on-premise Unitrends backup system to an off-premise Unitrends system, in a private cloud or a public cloud setup. Unitrends offers a disaster recovery public cloud service called Unitrends Cloud (was Vault2Cloud). Replication is achieved with in-flight deduplication and the only blocks transferred over the network are those that have changed or those that are different between the on-premise system and the off-premise system. But in order to achieve effective in-flight deduplication, the initial data set must be transferred to the off-premise location in its entirety. Given the size of the initial dataset, this operation can take a very long time to complete. RapidSeed is the process of transferring the initial dataset to a removable media (disk or NAS) and then using the removable media to seed the initial dataset on the off-premise location. Note: The procedures in this document are for replicating systems running Unitrends version or later. To seed an older system for vaulting, see RapidSeed for Legacy Vaulting Systems. 3

4 Supported seed devices by system The types of seed devices you can use for your system are listed here: Unitrends System UEB on Hyper-V UEB on VMware Recovery-172 All other Recovery-Series models Supported Seed Devices NAS* USB, NAS* USB, NAS* esata, NAS* *Note about NAS devices: Only Unitrends NAS devices are supported. Prerequisites Before initiating the seed process, ensure that the following prerequisites are addressed: General prerequisites Suspend or disable replication General prerequisites You must be running Unitrends version 7.2 or later. Have access to the Unitrends system using a terminal emulator, such as Putty. Completed replication configuration. The replication process requires an archive set in order to synchronize data from the backup system to the target. The seeding process requires that replication has been previously configured for the backup system. This document provides instructions for using an archive drive or Unitrends NAS device to seed data from the backup system to the target, without losing the integrity of the replicated backups. Disable archive schedules for the duration of the seed operation. a. Log into the backup system and select Archive > Schedule Archive. b. Select a schedule and click Enable/Disable. Repeat to disable each schedule. If a server had been configured for replication and had to be unconfigured, you must delete any active or queued backups: 4

5 a. In the Unitrends system, selecting Replication > Dashboard. b. Select the backups for these servers in the Active Replication Operations area and Pending Replication Operations. c. Select the trash can icon to delete the backup, and then select Remove Queue Items by their client. Suspend or disable replication Replication can be suspended or disabled until seeding is complete. This speeds up seeding. You can either: Suspend replication for your entire system. If you aren't seeding data for all clients, you can disable replication at the client, virtual machine, and application level. Option 1: Suspend replication Follow these procedures to suspend replication for the entire system: 1 In the Unitrends system, go to Replication > Replication Attributes > Connection Options and Process Control. 2 Click Suspend Replication. Option 2: Disable replication at the client, virtual machine, and application level Follow these steps to ensure that all clients, virtual machines, and applications that are seeding to the replication target are NOT set to be synchronized. For clients (file-level backups): 1 In the Unitrends system, go to Settings > Clients, Networking, and Notifications > Clients. 2 Select the client. 3 Uncheck (if checked) the All backups performed on this computer are to be replicated to a vault checkbox for the servers you wish to seed to the target. 4 Click Save. 5 Repeat this process for additional clients that are seeding to the replication target. 5

6 For VMware or Hyper-V virtual machines: 1 In the Navigation pane in the Unitrends system, select the Hyper-V or VMware node. 2 Go to Replication > Replication Attributes. You see a list of the virtual machines with checkboxes next to them. Note: If you do not see the desired items, click Reload to refresh the view. 3 Make sure the checkbox is NOT checked for virtual machines you want to seed. 4 Click Confirm to save your settings. 5 Repeat this process for additional virtual machines are seeding to the replication target and are not to be synchronized. For applications: 1 In the Navigation pane in the Unitrends system, select the application (such as SQL, Exchange, Oracle, or SharePoint). 2 Go to Replication > Replication Attributes. You see a list of applications with checkboxes next to them. Note: If you do not see the desired items, click Reload to refresh the view. 3 Make sure the checkbox is NOT checked for the applications you want to seed. 4 Click Confirm to save your settings. 5 Repeat this process for additional databases you are seeding to the replication target and are not to be synchronized. 6

7 On-premise configuration Perform one of the following procedures on the source backup system. See Supported seed devices by system if you are unsure which of the following to select. Using a seeding drive (esata or USB) Using the Unitrends NAS device for seeding Note: In the procedures in this section, command line entries contain a # sample prompt followed by the text that you enter in bold (such as # fdisk l). Using a seeding drive (esata or USB) You can use: A USB device for UEB on VMware and Recovery-172 systems. An esata device for all other Recovery-Series systems. A Unitrends NAS device for UEB on Hyper-V you must seed to a Unitrends NAS device. (See Using the Unitrends NAS device for seeding on page 11 for more information.) You must run the steps in this procedure from the backup system. Command-line steps are issued via a terminal emulator connection. For menu commands, log into the backup system. 1 Using a terminal emulator, such as Putty, ssh to the Unitrends system and log in as user root with the associated password. 2 Run the following commands from the command line, where # is the sample prompt and the text you enter is in bold: a. Enter the following: # mkdir /mnt/seed Note: This creates a mount point and only needs to be done once per backup system. # fdisk l b. Make a note of which /dev/sd devices are present. c. Place the archive drive in the upper right slot of the backup system or in the esata/usb docking station attached to the unit. Enter the following: # fdisk l 7

8 d. Determine which /dev/sd device is new this is the device node to use in the remaining steps. e. Clean the archive disk by entering the following: # wget ftp://ftp.unitrends.com/utilities/clean_drive -O clean_drive # chmod +x clean_drive #./clean_drive d /dev/sdx Where /dev/sdx represents the new device identified in the preceding step. f. Enter the following command: # cryptsetup -c aes -h ripemd160 -y create cryptdev /dev/sdx Where cryptdev is the name being used for the virtual device and where /dev/sdx represents the new device identified in the preceding step. You are prompted for an encryption key and must re-enter this key when mounting the drive at the replication site. This allows the data to be encrypted on the drive. g. Enter this command to create a file system on the virtual device: # mkfs t xfs /dev/mapper/cryptdev h. Enter this command to mount the virtual device: # mount /dev/mapper/cryptdev /mnt/seed i. Export this mount point through NFS: # echo /mnt/seed localhost(rw,no_root_squash) >/etc/exports j. Restart NFS service: # service nfs restart 3 Follow these steps to add this drive as archive storage. a. Log into the backup system and go to Settings > Storage and Retention > Storage. b. Click Add Archive Storage. 8

9 c. Select or enter the following: Field Type Name Host Protocol Share name Entry NAS Seed (or whatever name you prefer "Seed" is used as an example throughout this procedure) localhost nfs /mnt/seed You see a new storage element named seed created and usable for archiving. 4 From Putty, edit cmc_nas for seeding: # cp /usr/bp/bin/cmc_nas /usr/bp/bin/cmc_nas.orig # vi /usr/bp/bin/cmc_nas Enter: /TMPSTR= Enter: / This should now put the cursor at the second instance of TMPSTR= as shown below: nfs) TMPSTR=$2":/$SHARE on" Enter: o Enter: Press the Esc key Enter: :wq TMPSTR="$SHARE on" 5 Remount the NFS mount as local: # umount /backups/seed # mount o bind /mnt/seed /backups/seed 6 Follow these instructions to archive the clients to the seed drive storage: a. While still logged into the backup system, go to Archive > Archive Now. 9

10 b. Use the following settings for the archive: Field Time Range Clients Backup Types Target of Archive Options Local directory information Entry Last Backups Select clients which will be replicating. Select all that will be replicating. Select the archive target you just set up, named seed. Overwrite checked Purge not checked Report checked Compress not checked Encrypt not checked Seed checked Retention Period leave None required c. Click Archive and wait for the archive job to finish. It can be monitored by going to Settings > System Monitoring > Jobs. 7 After the archive job has finished, follow these steps to remove this drive from archive storage: a. Log into the backup system and go to Settings > Storage and Retention > Storage. b. Click on the storage item named seed, then click Delete. 8 To remove the NFS export for the seed drive, go to Putty and enter: # >/etc/exports # service nfs restart 9 Unmount the drive using the following commands: # umount /backups/seed # umount /mnt/seed # cryptsetup remove cryptdev 10

11 10 Restore cmc_nas to the original: # cp f /usr/bp/bin/cmc_nas.orig /usr/bp/bin/cmc_nas 11 Enable archiving, if needed, as follows: a. Select Archive > Schedule Archive. b. Select a schedule and click Enable/Disable at the bottom of the screen. c. Repeat to enable each schedule. The seeding drive is ready to ship to the off-site disaster recovery location. Using the Unitrends NAS device for seeding The following steps guide you through the seeding of data to a Unitrends NAS device when connected to a physical Unitrends system or connected over the network to a Unitrends Enterprise Backup deployment. 1 Configure the Unitrends NAS device onto the network as described in the Unitrends NAS Device Setup Guide. 2 Add this Unitrends NAS device as archive storage: a. Log into the backup system and go to Settings > Storage and Retention > Storage. b. Click Add Archive Storage. c. Select or enter the following: Field Type Name Host Protocol Share name Entry NAS Seed (or whatever name you prefer "Seed" is used as an example throughout this procedure) The NAS device's IP address nfs The NAS device's share name (/mnt/data) You see a new storage element named seed created and usable for archiving. 3 Follow these instructions to archive the clients to the seed drive storage: a. While still logged into the backup system, go to Archive > Archive Now. 11

12 b. Use the following settings for the archive: Field Time Range Clients Backup Types Target of Archive Options Local directory information Entry Last Backups Select clients which will be replicating. Select all that will be replicating. Select the archive target you just set up, named seed. Overwrite checked Purge not checked Report checked Compress not checked Encrypt not checked Seed checked Retention Period leave None required c. Click Archive and wait for the archive job to finish. It can be monitored by going to Settings > System Monitoring > Jobs. 4 After the archive job has finished, follow these steps to remove this drive from archive storage: a. Log into the backup system and go to Settings > Storage and Retention > Storage. b. Click on the storage item named seed, then click Delete. 5 Enable archiving, if needed, as follows: a. Select Archive > Schedule Archive. b. Select a schedule and click Enable/Disable at the bottom of the screen. c. Repeat to enable each schedule. The Unitrends NAS seeding device is ready to ship to the disaster recovery location. 12

13 Off-premise configuration Perform one of the following procedures. See Supported seed devices by system if you are unsure which of the following to select. Using an esata or USB seeding drive Using the Unitrends NAS seeding device Perform these steps at the off-premise disaster recovery site. You must run the steps in this procedure from the replication target system. Command-line steps are issued via a terminal emulator connection. For menu commands, log into the target system Administrator Interface by entering its IP address in any browser on the network. Note: In the procedures in this section, command line entries contain a # sample prompt followed by the text that you enter in bold (such as # fdisk l). Using an esata or USB seeding drive 1 Using a terminal emulator, such as Putty, ssh to the Unitrends system and log in as user root with the associated password. 2 If backups on the seeding drive are encrypted, be sure that encryption is enabled on the replication target. For details, see About encryption in the Unitrends Administrator's Guide. 3 To mount the drive, enter the following commands or follow these instructions: a. # mkdir /mnt/seed b. # fdisk l c. Make a note of which /dev/sd devices are present. d. Place the seed drive in the esata/usb device attached to the unit. e. # fdisk l f. Determine which /dev/sd device is new this will be the device node to use in the mount commands. g. # cryptsetup -c aes -h ripemd160 -y create cryptdev /dev/sdx Where /dev/sdx represents the new device identified in the preceding step. h. You see a prompt for an encryption key. Enter the identical key used when initially setting up seeding at the backup system. i. # mount /dev/mapper/cryptdev /mnt/seed 13

14 4 Export this mount point through NFS: # echo /mnt/seed localhost(rw,no_root_squash) >/etc/exports 5 Restart NFS service: # service nfs restart 6 Add this drive as archive storage: a. Log into the replication target system and go to Settings > Storage and Retention > Storage. b. Click Add Archive Storage. c. Select or enter the following: Field Type Name Host Protocol Share name Entry NAS Seed (or whatever name you prefer "Seed" is used as an example throughout this procedure) localhost nfs /mnt/seed You see a new storage element named seed created and usable for archiving. 7 On the target system, import the seeded backups: a. Select the target (brown vault icon) in the Navigation pane. b. Go to Archive > Media. Wait for the connected media scan to complete. 8 From Putty, edit cmc_nas for seeding: # cp /usr/bp/bin/cmc_nas /usr/bp/bin/cmc_nas.orig # vi /usr/bp/bin/cmc_nas Enter: /TMPSTR= Enter: / This should now put the cursor at the second instance of TMPSTR= as shown below: nfs) TMPSTR=$2":/$SHARE on" Enter: o 14

15 Enter: TMPSTR="$SHARE on" Press the Esc key Enter: :wq 9 Replace the NFS mount with a local mount # umount /backups/seed # mount -o bind /mnt/seed /backups/seed 10 Perform the following: a. Identify the directory name of the archive set in the newly mounted /mnt/seed location, which looks something like this: ls /mnt/seed _11_44_04 blockstore b. Run the rapidseedimport script with the following: The latest version, which is available via: # wget ftp://ftp.unitrends.com/utilities/rapidseedimport.sh # chmod 755 rapidseedimport.sh The full path identified in the previous step as the first parameter. The number of concurrent copies to use is the second parameter. This should be 3 for a single disk and 8 for a FreeNAS archive device, which looks something like this: rapidseedimport.sh /mnt/seed/ _11_44_04/ 3 c. When the script is finished, you see the following: All transfers are complete. Exiting. 11 After the restore is complete, you must resume replication for the entire system or enable replication at the client, virtual machine, or application level, depending on what method you used at the beginning of this process. (See Suspend or disable replication on page 5 for more information.) Note: Once seeded backups have been imported, you may see larger replication jobs until the database has been updated with unique block identifiers. These updates run after the import and are required for replication to determine which blocks are new and which are duplicates. 15

16 Perform one of the following: If you suspended replication on the system In the Unitrends system, go to Replication > Replication Attributes > Connection Options and Process Control. Click Resume Replication to restart replication on the backup system. If you disabled replication at the client, virtual machine, or application level Follow the steps in Option 2: Disable replication at the client, virtual machine, and application level on page 5, but be sure to check the checkboxes to enable replication. 12 Remove this drive from archive storage: a. Log into the backup system and go to Settings > Storage and Retention > Storage. b. Click on the storage item named seed, then click Delete. 13 Remove the NFS export for the seed drive: # > /etc/exports # service nfs restart 14 (Optional) You can now remove all of the contents of the seed drive by running the following command: # dd if=/dev/zero of=/dev/mapper/cryptdev bs=1m 15 Unmount the drive using the following commands: # umount /backups/seed # umount /mnt/seed # cryptsetup remove cryptdev 16 Restore cmc_nas to the original: # cp f /usr/bp/bin/cmc_nas.orig /usr/bp/bin/cmc_nas Using the Unitrends NAS seeding device 1 Configure the Unitrends NAS device onto the network as described in the Unitrends NAS Device Setup Guide. 2 If backups on the Unitrends NAS seeding device are encrypted, be sure that encryption is enabled on the replication target. For details, see About encryption in the Unitrends Administrator's Guide. 16

17 3 Add this Unitrends NAS device as archive storage: a. Log into the target system and go to Settings > Storage and Retention > Storage. b. Click Add Archive Storage. c. Select or enter the following Field Type Name Host Protocol Share name Entry NAS Seed (or whatever name you prefer "Seed" is used as an example throughout this procedure) The NAS device's IP address nfs The NAS device's share name (/mnt/data) You see a new storage element named seed created and usable for archiving. 4 On the target system, import the seeded backups: a. Select the target (brown vault icon) in the Navigation pane. b. Go to Archive > Media. Wait for the connected media scan to complete. c. Select Seed, then click on Sets at the bottom of the screen. d. Import the archive set on the media. e. Go to Archive > Status to see the archive set you just imported. f. Click on the archive set. 17

18 You see the Archive Set Information window. g. Click Restore to System. You see the Restore Archive of [date] window. h. Check the Restore for Seeding? checkbox. i. Click Restore to system. You can monitor the restore by going to Settings > System Monitoring > Jobs. j. (Optional) Once the restore is complete, remove all of the seeded archives by selecting the seed archive target and then selecting Prepare. Note: For more information, see the Archiving section in the Unitrends Administrator's Guide and the archiving videos. 5 After the restore is complete, you must resume replication for the entire system or enable replication at the client, virtual machine, or application level, depending on what method you used at the beginning of this process. (See Suspend or disable replication on page 5 for more information.) Note: Once seeded backups have been imported, you may see larger replication jobs until the database has been updated with unique block identifiers. These updates run after the import and are required for replication to determine which blocks are new and which are duplicates. Perform one of the following: If you suspended replication on the system In the Unitrends system, go to Replication > Replication Attributes > Connection Options and Process Control. Click Resume Replication to restart replication on the backup system. If you disabled replication at the client, virtual machine, or application level Follow the steps in Option 2: Disable replication at the client, virtual machine, and application level on page 5, but be sure to check the checkboxes to enable replication. 6 On the target, remove this drive from archive storage: a. Log into the target system and go to Settings > Storage and Retention > Storage. b. Click on the storage item named seed, then click Delete. 18

Unitrends Virtual Backup Installation Guide Version 8.0

Unitrends Virtual Backup Installation Guide Version 8.0 Unitrends Virtual Backup Installation Guide Version 8.0 Release June 2014 7 Technology Circle, Suite 100 Columbia, SC 29203 Phone: 803.454.0300 Contents Chapter 1 Getting Started... 1 Version 8 Architecture...

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

Virtual Dashboard for VMware and Hyper-V

Virtual Dashboard for VMware and Hyper-V Virtual Dashboard for VMware and Hyper-V USER MANUAL Steelgate Technologies, February 2015, all rights reserved. All trademarks are the property of their respective owners. Features and specifications

More information

EVault for Data Protection Manager. Course 361 Protecting Linux and UNIX with EVault

EVault for Data Protection Manager. Course 361 Protecting Linux and UNIX with EVault EVault for Data Protection Manager Course 361 Protecting Linux and UNIX with EVault Table of Contents Objectives... 3 Scenario... 3 Estimated Time to Complete This Lab... 3 Requirements for This Lab...

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

NovaBACKUP Virtual Dashboard

NovaBACKUP Virtual Dashboard NovaBACKUP Virtual Dashboard User Manual NovaStor / April 2015 2015 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to

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

Altaro Hyper-V Backup V4 - User Guide

Altaro Hyper-V Backup V4 - User Guide Altaro Hyper-V Backup V4 - User Guide 1 / 161 Table of contents Introducing Altaro Hyper-V Backup... 5 Roles... 6 Sample Scenario... 7 Different Editions... 9 Getting Started... 11 System requirements...

More information

EVault Software. Course 361 Protecting Linux and UNIX with EVault

EVault Software. Course 361 Protecting Linux and UNIX with EVault EVault Software Course 361 Protecting Linux and UNIX with EVault Table of Contents Objectives... 3 Scenario... 3 Estimated Time to Complete This Lab... 3 Requirements for This Lab... 3 Computers Used in

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

NovaBACKUP. User Manual. NovaStor / May 2014

NovaBACKUP. User Manual. NovaStor / May 2014 NovaBACKUP User Manual NovaStor / May 2014 2014 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to change without notice.

More information

NAS 109 Using NAS with Linux

NAS 109 Using NAS with Linux NAS 109 Using NAS with Linux Access the files on your NAS using Linux A S U S T O R C O L L E G E COURSE OBJECTIVES Upon completion of this course you should be able to: 1. Use Linux to access files on

More information

Best Practices for Trialing the Intronis Cloud Backup and Recovery Solution

Best Practices for Trialing the Intronis Cloud Backup and Recovery Solution Best Practices for Trialing the Intronis Cloud Backup and Recovery Solution Intronis Cloud Backup and Recovery is a file based backup application that allows users to back up their critical data to the

More information

SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore

SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore Document Scope This solutions document describes how to configure and use the Microsoft Exchange InfoStore Backup and Restore feature in

More information

vsphere Replication for Disaster Recovery to Cloud

vsphere Replication for Disaster Recovery to Cloud vsphere Replication for Disaster Recovery to Cloud vsphere Replication 6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

NAS 253 Introduction to Backup Plan

NAS 253 Introduction to Backup Plan NAS 253 Introduction to Backup Plan Create backup jobs using Backup Plan in Windows A S U S T O R C O L L E G E COURSE OBJECTIVES Upon completion of this course you should be able to: 1. Create backup

More information

CTERA Agent for Linux

CTERA Agent for Linux User Guide CTERA Agent for Linux September 2013 Version 4.0 Copyright 2009-2013 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced in any form or by any means without written

More information

Altaro Hyper-V Backup V4 - User Manual

Altaro Hyper-V Backup V4 - User Manual Altaro Hyper-V Backup V4 - User Manual 2009 2013 Altaro, Ltd. All Rights Reserved Table of contents Introducing Altaro Hyper-V Backup... 5 Add-Ons... 6 Sample Scenario... 7 Different Editions... 9 Getting

More information

Cloud Services for Backup Exec. Planning and Deployment Guide

Cloud Services for Backup Exec. Planning and Deployment Guide Cloud Services for Backup Exec Planning and Deployment Guide Chapter 1 Introducing Cloud Services for Backup Exec This chapter includes the following topics: About Cloud Services for Backup Exec Security

More information

Protecting SQL Server Databases. 1997-2008 Software Pursuits, Inc.

Protecting SQL Server Databases. 1997-2008 Software Pursuits, Inc. Protecting SQL Server Databases 1997-2008 Table of Contents Introduction... 2 Overview of the Backup Process... 2 Configuring SQL Server to Perform Scheduled Backups... 3 Configuring SureSync Relation

More information

Drobo How-To Guide. Cloud Storage Using Amazon Storage Gateway with Drobo iscsi SAN

Drobo How-To Guide. Cloud Storage Using Amazon Storage Gateway with Drobo iscsi SAN The Amazon Web Services (AWS) Storage Gateway uses an on-premises virtual appliance to replicate a portion of your local Drobo iscsi SAN (Drobo B1200i, left below, and Drobo B800i, right below) to cloudbased

More information

Deploying SecureCloud SaaS in a vcloud Environment

Deploying SecureCloud SaaS in a vcloud Environment Deploying SecureCloud SaaS in a vcloud Environment Securing Your Journey to the Cloud Trend Micro SecureCloud A Trend Micro & VMware White Paper August 2011 I. EXECUTIVE SUMMARY This is the second paper

More information

Maintaining the Content Server

Maintaining the Content Server CHAPTER 7 This chapter includes the following Content Server maintenance procedures: Backing Up the Content Server, page 7-1 Restoring Files, page 7-3 Upgrading the Content Server, page 7-5 Shutting Down

More information

Backup Exec Private Cloud Services. Planning and Deployment Guide

Backup Exec Private Cloud Services. Planning and Deployment Guide Backup Exec Private Cloud Services Planning and Deployment Guide Chapter 1 Introducing Backup Exec Private Cloud Services This chapter includes the following topics: About Backup Exec Private Cloud Services

More information

How To Set Up A Backupassist For An Raspberry Netbook With A Data Host On A Nsync Server On A Usb 2 (Qnap) On A Netbook (Qnet) On An Usb 2 On A Cdnap (

How To Set Up A Backupassist For An Raspberry Netbook With A Data Host On A Nsync Server On A Usb 2 (Qnap) On A Netbook (Qnet) On An Usb 2 On A Cdnap ( WHITEPAPER BackupAssist Version 5.1 www.backupassist.com Cortex I.T. Labs 2001-2008 2 Contents Introduction... 3 Hardware Setup Instructions... 3 QNAP TS-409... 3 Netgear ReadyNas NV+... 5 Drobo rev1...

More information

Symantec Backup Exec 2014 Icon List

Symantec Backup Exec 2014 Icon List Symantec Backup Exec 2014 Icon List Alerts Image Description Alert needs attention Alerts Alert needs attention Alert needs attention Alert needs attention Error Error Error Error Informational alert Informational

More information

Xopero Centrally managed backup solution. User Manual

Xopero Centrally managed backup solution. User Manual Centrally managed backup solution User Manual Contents Desktop application...2 Requirements...2 The installation process...3 Logging in to the application...6 First logging in to the application...7 First

More information

Cloud Backup Express

Cloud Backup Express Cloud Backup Express Table of Contents Installation and Configuration Workflow for RFCBx... 3 Cloud Management Console Installation Guide for Windows... 4 1: Run the Installer... 4 2: Choose Your Language...

More information

Offline Data Transfer to VMWare vcloud Hybrid Service

Offline Data Transfer to VMWare vcloud Hybrid Service Offline Data Transfer to VMWare vcloud Hybrid Service vcloud Connector 2.5.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

uh6 efolder BDR Guide for Veeam Page 1 of 36

uh6 efolder BDR Guide for Veeam Page 1 of 36 efolder BDR for Veeam Hyper-V Continuity Cloud Guide Setup Continuity Cloud Import Backup Copy Job Restore Your VM uh6 efolder BDR Guide for Veeam Page 1 of 36 INTRODUCTION Thank you for choosing the efolder

More information

CTERA Agent for Mac OS-X

CTERA Agent for Mac OS-X User Guide CTERA Agent for Mac OS-X September 2013 Version 4.0 Copyright 2009-2013 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced in any form or by any means without

More information

NetApp OnCommand Plug-in for VMware Backup and Recovery Administration Guide. For Use with Host Package 1.0

NetApp OnCommand Plug-in for VMware Backup and Recovery Administration Guide. For Use with Host Package 1.0 NetApp OnCommand Plug-in for VMware Backup and Recovery Administration Guide For Use with Host Package 1.0 NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 USA Telephone: +1 (408) 822-6000 Fax: +1

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

Installation and Setup: Setup Wizard Account Information

Installation and Setup: Setup Wizard Account Information Installation and Setup: Setup Wizard Account Information Once the My Secure Backup software has been installed on the end-user machine, the first step in the installation wizard is to configure their account

More information

Acronis Backup Advanced 11.5 Solution Guide and Best Practices

Acronis Backup Advanced 11.5 Solution Guide and Best Practices User Guide Acronis Backup Advanced 11.5 Solution Guide and Best Practices Updated May 2015 - i - Table of Contents Solution Overview... 3 Acronis Backup and Recovery Components... 3 System Requirements...

More information

RecoveryVault Express Client User Manual

RecoveryVault Express Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

More information

User Guide. CTERA Agent. August 2011 Version 3.0

User Guide. CTERA Agent. August 2011 Version 3.0 User Guide CTERA Agent August 2011 Version 3.0 Copyright 2009-2011 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced in any form or by any means without written permission

More information

Attix5 Pro Server Edition

Attix5 Pro Server Edition Attix5 Pro Server Edition V7.0.3 User Manual for Linux and Unix operating systems Your guide to protecting data with Attix5 Pro Server Edition. Copyright notice and proprietary information All rights reserved.

More information

Altaro Hyper-V Backup - Getting Started

Altaro Hyper-V Backup - Getting Started Altaro Hyper-V Backup - Getting Started System Requirements Supported Host Operating Systems: Altaro Hyper-V Backup: o Windows 2008 R2 (all editions) o Windows 2008 R2 SP1 o Windows Hyper-V Server 2008

More information

Acronis Backup Advanced for Exchange. Version 11.5 Update 3. Backing Up Microsoft Exchange Server Data

Acronis Backup Advanced for Exchange. Version 11.5 Update 3. Backing Up Microsoft Exchange Server Data Acronis Backup Advanced for Exchange Version 11.5 Update 3 Backing Up Microsoft Exchange Server Data Copyright Statement Copyright Acronis International GmbH, 2002-2014. All rights reserved. Acronis and

More information

User Guide - Exchange Database idataagent

User Guide - Exchange Database idataagent User Guide - Exchange Database idataagent TABLE OF CONTENTS OVERVIEW Introduction Key Features Add-On Components Customized Features for Your Exchange Version Terminology SYSTEM REQUIREMENTS - EXCHANGE

More information

Acronis Backup & Recovery 11

Acronis Backup & Recovery 11 Acronis Backup & Recovery 11 Quick Start Guide Applies to the following editions: Advanced Server Virtual Edition Advanced Server SBS Edition Advanced Workstation Server for Linux Server for Windows Workstation

More information

Managing Cisco ISE Backup and Restore Operations

Managing Cisco ISE Backup and Restore Operations CHAPTER 14 This chapter describes the Cisco Identity Services Engine (ISE) database backup and restore operations, which include Cisco ISE application configuration and Cisco Application Deployment Engine

More information

Online Backup Linux Client User Manual

Online Backup Linux Client User Manual Online Backup Linux Client User Manual Software version 4.0.x For Linux distributions August 2011 Version 1.0 Disclaimer This document is compiled with the greatest possible care. However, errors might

More information

Gladinet Cloud Backup V3.0 User Guide

Gladinet Cloud Backup V3.0 User Guide Gladinet Cloud Backup V3.0 User Guide Foreword The Gladinet User Guide gives step-by-step instructions for end users. Revision History Gladinet User Guide Date Description Version 8/20/2010 Draft Gladinet

More information

1. Product Information

1. Product Information ORIXCLOUD BACKUP CLIENT USER MANUAL LINUX 1. Product Information Product: Orixcloud Backup Client for Linux Version: 4.1.7 1.1 System Requirements Linux (RedHat, SuSE, Debian and Debian based systems such

More information

Online Backup Client User Manual

Online Backup Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

More information

Online Backup Client User Manual Linux

Online Backup Client User Manual Linux Online Backup Client User Manual Linux 1. Product Information Product: Online Backup Client for Linux Version: 4.1.7 1.1 System Requirements Operating System Linux (RedHat, SuSE, Debian and Debian based

More information

Administration GUIDE. Exchange Database idataagent. Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 233

Administration GUIDE. Exchange Database idataagent. Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 233 Administration GUIDE Exchange Database idataagent Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 233 User Guide - Exchange Database idataagent Table of Contents Overview Introduction Key Features

More information

VMware Mirage Web Manager Guide

VMware Mirage Web Manager Guide Mirage 5.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this document,

More information

SOLUTION GUIDE AND BEST PRACTICES

SOLUTION GUIDE AND BEST PRACTICES SOLUTION GUIDE AND BEST PRACTICES Last Updated December 2012 Solution Overview Combine the best in bare-metal backup with the best in remote backup to offer your customers a complete disaster recovery

More information

FalconStor Recovery Agents User Guide

FalconStor Recovery Agents User Guide FalconStor Recovery Agents User Guide FalconStor Software, Inc. 2 Huntington Quadrangle Melville, NY 11747 Phone: 631-777-5188 Fax: 631-501-7633 Web site: www.falconstor.com Copyright 2007-2009 FalconStor

More information

Backup Tab. User Guide

Backup Tab. User Guide Backup Tab User Guide Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Overview... 2 2. Create a New Backup... 3 3. Manage backup jobs... 4 Using the Edit menu... 5 Overview... 5 Destination...

More information

Performing Database and File System Backups and Restores Using Oracle Secure Backup

Performing Database and File System Backups and Restores Using Oracle Secure Backup Performing Database and File System Backups and Restores Using Oracle Secure Backup Purpose This lesson introduces you to Oracle Secure Backup which enables you to perform database and file system backups

More information

Veeam Backup Enterprise Manager. Version 7.0

Veeam Backup Enterprise Manager. Version 7.0 Veeam Backup Enterprise Manager Version 7.0 User Guide August, 2013 2013 Veeam Software. All rights reserved. All trademarks are the property of their respective owners. No part of this publication may

More information

SmartFiler Backup Appliance User Guide 2.0

SmartFiler Backup Appliance User Guide 2.0 SmartFiler Backup Appliance User Guide 2.0 SmartFiler Backup Appliance User Guide 1 Table of Contents Overview... 5 Solution Overview... 5 SmartFiler Backup Appliance Overview... 5 Getting Started... 7

More information

PN: 210-0317-04. Using Veeam Backup and Replication Software with an ExaGrid System

PN: 210-0317-04. Using Veeam Backup and Replication Software with an ExaGrid System PN: 210-0317-04 Using Veeam Backup and Replication Software with an ExaGrid System Copyright No part of this document may be reproduced or transmitted in any form or by any means without the express written

More information

NTP Software VFM Administration Web Site for EMC Atmos

NTP Software VFM Administration Web Site for EMC Atmos NTP Software VFM Administration Web Site for EMC Atmos User Manual Revision 1.1 - July 2015 This guide details the method for using NTP Software VFM Administration Web Site, from an administrator s perspective.

More information

Acronis Backup Advanced Version 11.5 Update 6

Acronis Backup Advanced Version 11.5 Update 6 Acronis Backup Advanced Version 11.5 Update 6 APPLIES TO THE FOLLOWING PRODUCTS Advanced for Exchange BACKING UP MICROSOFT EXCHANGE SERVER DATA Copyright Statement Copyright Acronis International GmbH,

More information

Acronis Backup & Recovery 11.5 Quick Start Guide

Acronis Backup & Recovery 11.5 Quick Start Guide Acronis Backup & Recovery 11.5 Quick Start Guide Applies to the following editions: Advanced Server for Windows Virtual Edition Advanced Server SBS Edition Advanced Workstation Server for Linux Server

More information

AUTOMATED DISASTER RECOVERY SOLUTION USING AZURE SITE RECOVERY FOR FILE SHARES HOSTED ON STORSIMPLE

AUTOMATED DISASTER RECOVERY SOLUTION USING AZURE SITE RECOVERY FOR FILE SHARES HOSTED ON STORSIMPLE AUTOMATED DISASTER RECOVERY SOLUTION USING AZURE SITE RECOVERY FOR FILE SHARES HOSTED ON STORSIMPLE Copyright This document is provided "as-is." Information and views expressed in this document, including

More information

Acronis Backup & Recovery for Mac. Acronis Backup & Recovery & Acronis ExtremeZ-IP REFERENCE ARCHITECTURE

Acronis Backup & Recovery for Mac. Acronis Backup & Recovery & Acronis ExtremeZ-IP REFERENCE ARCHITECTURE Acronis Backup & Recovery for Mac Acronis Backup & Recovery & Acronis ExtremeZ-IP This document describes the technical requirements and best practices for implementation of a disaster recovery solution

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

13.1 Backup virtual machines running on VMware ESXi / ESX Server

13.1 Backup virtual machines running on VMware ESXi / ESX Server 13 Backup / Restore VMware Virtual Machines Tomahawk Pro This chapter describes how to backup and restore virtual machines running on VMware ESX, ESXi Server or VMware Server 2.0. 13.1 Backup virtual machines

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

BDR for ShadowProtect Solution Guide and Best Practices

BDR for ShadowProtect Solution Guide and Best Practices BDR for ShadowProtect Solution Guide and Best Practices Updated September 2015 - i - Table of Contents Process Overview... 3 1. Assess backup requirements... 4 2. Provision accounts... 4 3. Install ShadowProtect...

More information

Administering Cisco ISE

Administering Cisco ISE CHAPTER 8 This chapter describes the administrative activities for the Cisco Identity Services Engine (ISE) and how to perform them. The following topics are covered: Logging In, page 8-1 System Time and

More information

1 of 10 1/31/2014 4:08 PM

1 of 10 1/31/2014 4:08 PM 1 of 10 1/31/2014 4:08 PM copyright 2014 How to backup Microsoft SQL Server with Nordic Backup Pro Before creating a SQL backup set within Nordic Backup Pro it is first necessary to verify that the settings

More information

Table of Contents ShareCenter Sync Overview...3

Table of Contents ShareCenter Sync Overview...3 Table of Contents ShareCenter Sync Overview...3 Introduction...3 Main Window...4 Logs... 5 Settings... 6 Creating a Backup Task...7 Deleting a Backup Task...20 Starting a Backup Task...21 Accessing Backups...23

More information

File Protection Using Rsync User Guide

File Protection Using Rsync User Guide File Protection Using Rsync 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

More information

Quick Start Guide. User Manual. 1 March 2012

Quick Start Guide. User Manual. 1 March 2012 Quick Start Guide User Manual 1 March 2012 This document outlines the steps to install SAMLite system into a single box of server and configure it to run for passive collection (domain login script). This

More information

Hyperoo 2.0 A (Very) Quick Start

Hyperoo 2.0 A (Very) Quick Start Hyperoo 2.0 A (Very) Quick Start Download and install the Hyperoo 2.0 beta Hyperoo 2.0 is a client/server based application and as such requires that you install both the Hyperoo Client and Hyperoo Server

More information

Quick Start - Virtual Server idataagent (Microsoft/Hyper-V)

Quick Start - Virtual Server idataagent (Microsoft/Hyper-V) Page 1 of 31 Quick Start - Virtual Server idataagent (Microsoft/Hyper-V) TABLE OF CONTENTS OVERVIEW Introduction Key Features Complete Virtual Machine Protection Granular Recovery of Virtual Machine Data

More information

Laptop Backup - User Guide (Windows)

Laptop Backup - User Guide (Windows) Laptop Backup - User Guide (Windows) Page 1 of 14 Page 2 of 14 Laptop Backup - User Guide - (Windows) TABLE OF CONTENTS INSTALLATION MONITOR RESTORE ADVANCED OPTIONS Adding Backup Content Filtering Contents

More information

EVault for Data Protection Manager. Course 321 Protecting Exchange 2010 with DPM

EVault for Data Protection Manager. Course 321 Protecting Exchange 2010 with DPM EVault for Data Protection Manager Course 321 Protecting Exchange 2010 with DPM Table of Contents Objectives... 3 Scenario... 3 Estimated Time to Complete This Lab... 3 Requirements for This Lab... 3 Computers

More information

CA ARCserve D2D for Linux

CA ARCserve D2D for Linux CA ARCserve D2D for Linux User Guide r16.5 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your

More information

SmartFiler Backup Appliance User Guide 2.1

SmartFiler Backup Appliance User Guide 2.1 SmartFiler Backup Appliance User Guide 2.1 SmartFiler Backup Appliance User Guide 1 Table of Contents Overview... 4 Solution Overview... 4 Solution 1: Two Virtual Backup Appliances... 5 Solution 2: Two

More information

VMware vcenter Configuration Manager Backup and Disaster Recovery Guide vcenter Configuration Manager 5.4.1

VMware vcenter Configuration Manager Backup and Disaster Recovery Guide vcenter Configuration Manager 5.4.1 VMware vcenter Configuration Manager Backup and Disaster Recovery Guide vcenter Configuration Manager 5.4.1 This document supports the version of each product listed and supports all subsequent versions

More information

SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide

SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide Copyright and Trademark Statements 2014 ViewSonic Computer Corp. All rights reserved. This document contains proprietary information that

More information

Acronis Backup & Recovery 10 Advanced Server Virtual Edition. Quick Start Guide

Acronis Backup & Recovery 10 Advanced Server Virtual Edition. Quick Start Guide Acronis Backup & Recovery 10 Advanced Server Virtual Edition Quick Start Guide Table of contents 1 Main components...3 2 License server...3 3 Supported operating systems...3 3.1 Agents... 3 3.2 License

More information

Microsoft Virtual Labs. Administering the IIS 7 File Transfer Protocol (FTP) Server

Microsoft Virtual Labs. Administering the IIS 7 File Transfer Protocol (FTP) Server Microsoft Virtual Labs Administering the IIS 7 File Transfer Protocol (FTP) Server Table of Contents Exercise 1 Installing the Microsoft FTP Publishing Service for the IIS 7... 1 Exercise 2 Introducing

More information

Acronis Backup & Recovery 11.5. Backing Up Microsoft Exchange Server Data

Acronis Backup & Recovery 11.5. Backing Up Microsoft Exchange Server Data Acronis Backup & Recovery 11.5 Backing Up Microsoft Exchange Server Data Copyright Statement Copyright Acronis International GmbH, 2002-2012. All rights reserved. Acronis and Acronis Secure Zone are registered

More information

vsphere Replication for Disaster Recovery to Cloud

vsphere Replication for Disaster Recovery to Cloud vsphere Replication for Disaster Recovery to Cloud vsphere Replication 5.8 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

NETGEAR ReadyNAS and Acronis Backup & Recovery 10 Configuring ReadyNAS as an Acronis Backup & Recovery 10 Vault

NETGEAR ReadyNAS and Acronis Backup & Recovery 10 Configuring ReadyNAS as an Acronis Backup & Recovery 10 Vault NETGEAR ReadyNAS and Acronis Backup & Recovery 10 Configuring ReadyNAS as an Acronis Backup & Recovery 10 Vault Table of Contents Contents...2 Concepts...3 Data Deduplication...3 Acronis Vaults...4 Components...4

More information

CTERA Agent for Windows

CTERA Agent for Windows User Guide CTERA Agent for Windows May 2012 Version 3.1 Copyright 2009-2012 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced in any form or by any means without written

More information

Acronis SharePoint Explorer. User Guide

Acronis SharePoint Explorer. User Guide Acronis SharePoint Explorer User Guide Table of contents 1 Introducing Acronis SharePoint Explorer... 3 1.1 Supported Microsoft SharePoint versions... 3 1.2 Supported backup locations... 3 1.3 Licensing...

More information

Altaro Hyper-V Backup

Altaro Hyper-V Backup Altaro Hyper-V Backup An Introduction info@altaro.com www.altaro.com An Introduction Contents What we'll be covering... Product Overview Installation Configuring and Managing your Backups Backing up VMs

More information

Copyright 2012 Trend Micro Incorporated. All rights reserved.

Copyright 2012 Trend Micro Incorporated. All rights reserved. Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the software, please review the readme files,

More information

NAS 259 Protecting Your Data with Remote Sync (Rsync)

NAS 259 Protecting Your Data with Remote Sync (Rsync) NAS 259 Protecting Your Data with Remote Sync (Rsync) Create and execute an Rsync backup job A S U S T O R C O L L E G E COURSE OBJECTIVES Upon completion of this course you should be able to: 1. Having

More information

Easy Setup Guide 1&1 CLOUD SERVER. Creating Backups. for Linux

Easy Setup Guide 1&1 CLOUD SERVER. Creating Backups. for Linux Easy Setup Guide 1&1 CLOUD SERVER Creating Backups for Linux Legal notice 1&1 Internet Inc. 701 Lee Road, Suite 300 Chesterbrook, PA 19087 USA www.1and1.com info@1and1.com August 2015 Copyright 2015 1&1

More information

Backing Up and Restoring Microsoft Exchange Server 2010. Cloud Attached Storage. August 2012 Version 3.2

Backing Up and Restoring Microsoft Exchange Server 2010. Cloud Attached Storage. August 2012 Version 3.2 Backing Up and Restoring Microsoft Exchange Server 2010 Cloud Attached Storage August 2012 Version 3.2 1 Introduction This document explains how to backup your Microsoft Exchange Server 2010 database and

More information

owncloud Configuration and Usage Guide

owncloud Configuration and Usage Guide owncloud Configuration and Usage Guide This guide will assist you with configuring and using YSUʼs Cloud Data storage solution (owncloud). The setup instructions will include how to navigate the web interface,

More information

NovaBACKUP. User Manual. NovaStor / November 2011

NovaBACKUP. User Manual. NovaStor / November 2011 NovaBACKUP User Manual NovaStor / November 2011 2011 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to change without

More information

Online Backup Plus Frequently Asked Questions

Online Backup Plus Frequently Asked Questions Online Backup Plus Frequently Asked Questions 1 INSTALLATION 1.1 Who installs the Redstor Online Backup Plus service? 1.2 How does the installed client connect to Redstor s Cloud Platform? 1.3 On which

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

Administration GUIDE. SharePoint Server idataagent. Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 201

Administration GUIDE. SharePoint Server idataagent. Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 201 Administration GUIDE SharePoint Server idataagent Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 201 Getting Started - SharePoint Server idataagent Overview Deployment Configuration Decision Table

More information

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide Page 1 of 243 Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide (This is an alpha version of Benjamin Day Consulting, Inc. s installation

More information

Backup Tab. User Guide

Backup Tab. User Guide Backup Tab User Guide Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Overview... 2 2. Create a New Backup... 3 3. Manage backup jobs... 4 Using the Edit menu... 5 Overview... 5 Destination...

More information

«Disaster Recovery» A DOM Restore Guide for Thecus NAS

«Disaster Recovery» A DOM Restore Guide for Thecus NAS «Disaster Recovery» A DOM Restore Guide for Thecus NAS This guide is applicable to the following NAS models N2800, N4800ECO, N5550, N4510U (PRO), N6850, N8850, 10850, N7510, N7710, N8810, N8900, N12000

More information

How to Backup XenServer VM with VirtualIQ

How to Backup XenServer VM with VirtualIQ How to Backup XenServer VM with VirtualIQ 1. Using Live Backup of VM option: Live Backup: This option can be used, if user does not want to power off the VM during the backup operation. This approach takes

More information