How to Back Up and Restore Application Consistent Snapshots of SQL and Exchange Databases

Size: px
Start display at page:

Download "How to Back Up and Restore Application Consistent Snapshots of SQL and Exchange Databases"

Transcription

1 How to Back Up and Restore Application Consistent Snapshots of SQL and Exchange Databases How To#: 4041 Title: How to Back Up and Restore Application Consistent Snapshots of SQL and Exchange Databases Table of Contents Overview Resolution Overview of Application Consistent Snapshots of SQL and Exchange Databases Prepare Your Environment Generate a Public/Private Key Pair Add the Public Key to the OmniCube Virtual Controller (OVC) Run the Backup Script Restore a VM Run the Restore Script Properties Server Platform: All server platforms OmniStack Software Version: v and later Information Level: 1 Date Created: Thursday, November 12, 2015 Date Revised: Wednesday, August 30, 2017 Overview This article explains how to configure and run a backup script to create application consistent backups of SQL and Exchange databases. It also explains how to restore configure the restore script file. As of OmniStack v3.5.3, VSS backups for SQL have been integrated fully into the product if a supported version of SQL is installed. Users running OmniStack v3.5.3 or later with SQL should not follow this procedure. You may continue to use this script for Exchange or older versions of OmniStack software where you are backing up SQL. Resolution Overview of Application Consistent Snapshots of SQL and Exchange Databases You run the backup script on a Windows Server Virtual Machine (VM) running an SQL or Exchange Server that can access the SQL or Exchange databases and system files that you want to back up. The script uses Volume Shadow Copy Service (VSS) to create an application consistent snapshot of the specified SQL or Exchange files on the VM. The script then backs up the entire VM. A script for restoring backups is also provided. You can configure the restore script file, which reside on the target VM, before backing up the VM. The configured restore script file is then available after you restore a VM. 1

2 Here is a high-level list of what the scripts do: SimpliVity script runs inside the VM The script invokes Microsoft VSS to create a VSS snapshot VSS snapshot communicates with the application to complete in-coming writes and flushes memory to disk The script allows log truncation by the VSS backup Once the VSS based snapshot is created, the script invokes the SimpliVity CLI commands to create a backup When the SimpliVity backup succeeds, we delete the VSS software snapshot Restoring - Restore the VM with the SimpliVity restore process using UI or CLI Run the VSS restore script inside the restored VM The restore script restores the VSS snapshot to get back the application consistent state of the VM Exchange - Customers usually need to run ESEUTIL to recover the database SQL - Restarting the database runs the recovery process Prepare Your Environment The backup script set consists of the SimpliVityBackupV2.ps1 file. You use PuTTYgen, PuTTY, and Plink to create and apply a private key that the script uses to access the specified OmniCube Virtual Controller (OVC), without being prompted for a password each time the script runs. You can download these utilities from: On the Windows Server VM, you can save all utilities to a single folder for easy file access. For example, a folder named \BackupScript located on the Windows desktop. Generate a Public/Private Key Pair To generate a public/private key pair and save the private key as a.ppk file: 1. Double-click puttygen.exe to open PuTTYgen. 2. Click Generate to create a new ssh public/private key. 3. Move your mouse continuously to generate randomness for the key. 4. Click Save private key to save the key to a file. 5. Click Yes to confirm saving the key without a passphrase. 6. Copy the generated key text displayed under: Public key for pasting into OpenSSH authorized_keys file to a new text file. 7. Exit PuTTYgen. NOTE: Saving the key without a passphrase enables the script to execute without prompting for the passphrase. Add the Public Key to the OmniCube Virtual Controller (OVC) You add the public key that you created in Generate a Public/Private Key Pair to the list of authorized keys on the OVC. When you run the backup script, it passes the private key to the OVC to gain access and proceeds with the backup without prompting for a password. To add the public key to the OVC: 2

3 1. Double-click putty.exe to open PuTTY. 2. Type the management IP address of a OVC in the Host Name field. The OVC can be on any OmniCube system in the Federation. 3. Click Open. If this is the first time you are using PuTTY to connect to the specified OVC from this VM, PuTTY prompts you to add the public key to the Windows registry. Adding the key to the registry allows the backup script to run without prompting. 4. Click Yes and PuTTY adds the public key to the registry on the Window Server VM. If you click No, the public key is not added to the Windows registry and the backup script prompts the user each time the script runs. 5. Log in to the OVC as svtcli. 6. Open the file ~/.ssh/authorized_keys. 7. Paste the public key copied from Generate a Public/Private Key Pair at the end of the authorized_keys file. Make sure the out put pasted onto a single line (you may have to remove spaces) 8. Put ssh-rsa in front of the public key you pasted. It should look similar to the other entry in the file. 9. Save and close the authorized_keys file. 10. Exit PuTTY. 11. Open a command prompt and run the following command from the directory containing the plink.cmd file to ensure that the backup script can access the OVC: plink <virtctrllr_ip/> -i <path file="" key="" private="" to=""/> -l svtcli echo hello, world where: VirtCtrllr_IP is the IP address of the Virtual Controller path to private key file is the path to the private key file If the command is successful, hello, world appears without prompting for a password. If you are prompted for a password, you might have incorrectly copied the public key to the OVC or the login credentials for the OVC are incorrect. Run the Backup Script Make sure you have completed the following tasks to configure the backup script file and have not changed the location of any configured files: Generate a Public/Private Key Pair Add the Public Key to the Virtual Controller To run the backup script, enter the following command at a PowerShell prompt (you may need to Set-ExecutionMode Bypass): SimpliVityBackup.ps1 To display the command arguments, enter: SimpliVityBackup.ps1 -? NOTE: You can use Windows Task Scheduler to run this command on a schedule. The parameters for SimpliVityBackup.ps1 are: Mandatory parameters 3

4 MountPoints - Comma separated list of drive letters or mount points. Mount points containing spaces must be enclosed in single or double quotes. For example: MountPoints E:,F: MountPoints C:\Mount,"C:\Mount 2" MetadataFolder - Directory to which the metadata.cab file will be written. PLinkFolder - Directory where plink.exe can be found. SVAIP - IP address of the virtual controller. PrivateKeyFile - Full path to the private key file used to authenticate with the SVA. SvaUserName - The user name of the account where the key was registered. vcenterusername - The user name used to connect to the vcenter. vcenterpassword - The password for the vcenterusername. Datastore - The datastore on which the VM resides. VMName - The name of the VM. Destination - The datacenter where the backup is being sent. Retention - The length of time the backup will be retained, specified as 1d for 1 day, 1w for 1 week, etc. Optional Parameters TruncateLogs - Truncate the logs during backup, if not present logs will not be truncated. VerifySQL - If specified the backup will fail and abort if the SQL writer is not included. VerifyExchange - If specified the backup will fail and abort if the Exchange writer is not included. The backup script creates manual backups of VMs that gradually consume storage capacity as each backup is created. Older backups do not expire or get deleted automatically. To free up storage capacity, delete backups manually or run the provided Perl script CleanUpOldBackups.pl. The script deletes the oldest manual backups for the specified datastore and VM, but leaves the number of specified backups you want to keep. You run the script for each VM on which the backup script is run. NOTE: The script ignores any manual backups that have custom names. Run the following command at a command prompt on the OVC to delete older backups: CleanUpOldBackups.pl <datastore name=""> <vm name=""> <# backups to keep> <vcenter user=""> <vcenter password=""/></vcenter></vm></datastore> where: datastore name The name of a datastore containing backups to delete. vm name The name of a virtual machine that contains the backups to delete. # backups to keep The number of newer backups to keep after older backups are deleted. vcenter user The user name for the vcenter account. vcenter password The password for the vcenter account. NOTE: You can use Linux utilities, such as cron, to run the cleanup script on a schedule. The restore script (VSSRestore.txt) enables you to recover SQL files from a backed up VM as follows: Use the vsphere Client GUI or OmniCube CLI commands to restore the VM. 4

5 Use the restore script to recover the SQL or Exchange file. NOTE: If you do not want to restore a VM, create a mirror VM that you can restore and then use the restore script to recover the SQL files. Restore a VM You use your vsphere Client or the OmniCube CLI commands to restore a Windows Server VM. For more information, refer to the OmniCube help or the OmniCube CLI Reference. The SimpliVity restore reverts the entire Windows Server VM to the backup copy. You then use the restore script to recover SQL files from the restored VM. The restore script set consists of the SimpliVityRestore.ps1 file. Run the Restore Script To run the restore script: 1. Take offline all SQL or Exchange databases you plan to restore. 2. Run the following command at a PowerShell prompt to restore backups: # SimplivityRestore.ps1 To display the command arguments, enter: SimpliVityRestore.ps1 -? The parameters for SimpliVityRestore.ps1 are: Mandatory parameters MetadataFolder - The directory that contains the metadata.cab file written by the backup script. MountIndices - A comma separated list of the 1 based indices of the mount points specified in the backup script arguments. The user can specify a subset of the mount points in the shadow to support side-by-side restore scenarios. If the user specified 4 mount points and wants to restore all 4 they would do so by specifying: MountIndices 1,2,3,4 3. Wait for the restore operation to complete. The restore is complete when the script exits. 4. Bring back online all SQL or Exchange databases. 5. Review the SQL or Exchange databases to verify that all files are restored. 5

How to Safely Shut Down an OmniCube/OmniStack Host

How to Safely Shut Down an OmniCube/OmniStack Host How to Safely Shut Down an OmniCube/OmniStack Host How To#: 11955 Title: How to Safely Shut Down an OmniCube/OmniStack Host Table of Contents Overview Resolution Using the vsphere Client Using the vsphere

More information

Managing Native Snapshots

Managing Native Snapshots HX Data Platform Native Snapshots Overview, page 1 Benefits of HX Data Platform Native Snapshots, page 2 Native Snapshot Considerations, page 3 Native Snapshot Best Practices, page 4 Understanding SENTINEL

More information

ZettaMirror Install Guide

ZettaMirror Install Guide ZettaMirror Install Guide March 2014 Table of Contents Planning Your ZettaMirror Deployment...3 Where to install ZettaMirror?...3 Do I need extra retention policies?...3 How to Download & Install ZettaMirror...4

More information

SimpliVity RapidDR Guide

SimpliVity RapidDR Guide SimpliVity RapidDR Guide Version 1.2.0 www.simplivity.com Trademarks SimpliVity, SimpliVity cube logo, The SimpliVity Data Virtualization Company, OmniCube, OmniStack, Global Federated Architecture, Data

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 4.0 Data Protection Guide For Oracle Databases May 2018 215-12930_D0 doccomments@netapp.com Table of Contents 3 Contents Deciding whether to read the SnapCenter Data Protection Guide

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 4.0 Data Protection Guide For Microsoft Exchange Server March 2018 215-12936_C0 doccomments@netapp.com Table of Contents 3 Contents Deciding whether to read the SnapCenter Data Protection

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 4.0 Data Protection Guide For Custom Plug-ins March 2018 215-12932_C0 doccomments@netapp.com Table of Contents 3 Contents Deciding on whether to read the SnapCenter Data Protection

More information

SnapCenter Software 4.0 Concepts Guide

SnapCenter Software 4.0 Concepts Guide SnapCenter Software 4.0 Concepts Guide May 2018 215-12925_D0 doccomments@netapp.com Table of Contents 3 Contents Deciding whether to use the Concepts Guide... 7 SnapCenter overview... 8 SnapCenter architecture...

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 2.0 Data Protection Guide For Windows File Systems January 2017 215-11356_A0 doccomments@netapp.com Table of Contents 3 Contents Deciding whether to read this information... 5 SnapCenter

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 4.0 Data Protection Guide For VMs and Datastores using the SnapCenter Plug-in for VMware vsphere March 2018 215-12931_C0 doccomments@netapp.com Table of Contents 3 Contents Deciding

More information

File Protection Whitepaper

File Protection Whitepaper Whitepaper Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Modes of operation... 2 Single-instance store... 3 Advantages of over traditional file copy methods... 3 2. Backup considerations...

More information

User Guide. Version R95. English

User Guide. Version R95. English Cloud Backup User Guide Version R95 English September 11, 2017 Copyright Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 4.1 Data Protection Guide For VMs and Datastores using the SnapCenter Plug-in for VMware vsphere September 2018 215-13399_B0 doccomments@netapp.com Table of Contents 3 Contents Deciding

More information

HPE StoreVirtual 3200 Application Aware Snapshot Manager User Guide

HPE StoreVirtual 3200 Application Aware Snapshot Manager User Guide HPE StoreVirtual 3200 Application Aware Snapshot Manager User Guide Abstract The StoreVirtual Application Aware Snapshot Manager simplifies the tasks of managing credentials and creating snapshots for

More information

LAB :: Secure SHell (SSL)

LAB :: Secure SHell (SSL) LAB :: Secure SHell (SSL) In this example we are using apnictraining.net as domain name. # super user command. $ normal user command. X replace with your group no. Username apnic and password training

More information

File Protection. Whitepaper

File Protection. Whitepaper Whitepaper Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Modes of operation... 2 Single-instance store... 3 Advantages of... 3 2. Backup considerations... 4 Exchange VM support... 4 Restore

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 4.1 Data Protection Guide For Microsoft SQL Server August 2018 215-13395_A0 doccomments@netapp.com Table of Contents 3 Contents Deciding on whether to read the SnapCenter Data Protection

More information

VTRAK S3000 Recovery Agents User Manual. Version 1.0

VTRAK S3000 Recovery Agents User Manual. Version 1.0 VTRAK S3000 Recovery Agents User Manual Version 1.0 VTrak S3000 Recovery Agents User Manual Copyright 2010 PROMISE Technology, Inc. All Rights Reserved. PROMISE, the PROMISE logo, VTrak, SmartStor, SuperTrak,

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 3.0 Data Protection Guide For Windows File Systems July 2017 215-12097_A0 doccomments@netapp.com Table of Contents 3 Contents Deciding whether to read this information... 5 SnapCenter

More information

File Protection Whitepaper

File Protection Whitepaper File Protection Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Modes of operation... 2 Single-instance store... 3 Advantages of File Protection over traditional file copy methods... 3

More information

EMC NetWorker Module for Microsoft for Windows Bare Metal Recovery Solution

EMC NetWorker Module for Microsoft for Windows Bare Metal Recovery Solution EMC NetWorker Module for Microsoft for Windows Bare Metal Recovery Solution Release 3.0 SP1 User Guide P/N 302-000-098 REV 02 Copyright 2007-2014 EMC Corporation. All rights reserved. Published in the

More information

How to Replace an SSD or HDD Drive in a CN-Series OmniCube

How to Replace an SSD or HDD Drive in a CN-Series OmniCube How to Replace an SSD or HDD Drive in a CN-Series OmniCube How To#: 4109 Title: How to Replace an SSD or HDD Drive in a CN-Series OmniCube Table of Contents Overview Resolution Prerequisites Solution Identifying

More information

IBM Spectrum Protect Snapshot for VMware 4.1.6

IBM Spectrum Protect Snapshot for VMware 4.1.6 IBM Spectrum Protect Snapshot for VMware 4.1.6 Objective of this document This document provides comprehensive information on the complete environment required to support IBM Spectrum Protect Snapshot

More information

Administration GUIDE. IntelliSnap Virtual Server idataagent for VMware. Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 277

Administration GUIDE. IntelliSnap Virtual Server idataagent for VMware. Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 277 Administration GUIDE IntelliSnap Virtual Server idataagent for VMware Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 277 IntelliSnap User Guide - Virtual Server idataagent for VMware Table of Contents

More information

Corrective Action for Failures with Either ESXi Host or vcenter Credentials

Corrective Action for Failures with Either ESXi Host or vcenter Credentials How to Update Identitystore How To#: 11753 Title: How to Update Identitystore Table of Contents Overview Resolution IdentityStore Update Utility System Requirements Verify IdentityStore Credentials Update

More information

OmniStack Solution with Lenovo x3650 M5 ESXi Upgrade and Factory Reset Guide

OmniStack Solution with Lenovo x3650 M5 ESXi Upgrade and Factory Reset Guide OmniStack Solution with Lenovo x3650 M5 ESXi Upgrade and Factory Reset Guide INTERNAL USE ONLY Version 3.5.2 www.simplivity.com Trademarks SimpliVity, the SimpliVity logo, The Data Virtualization Company,

More information

Cryptography Application : SSH. Cyber Security & Network Security March, 2017 Dhaka, Bangladesh

Cryptography Application : SSH. Cyber Security & Network Security March, 2017 Dhaka, Bangladesh Cryptography Application : SSH Cyber Security & Network Security 20-22 March, 2017 Dhaka, Bangladesh Issue Date: [31-12-2015] Revision: [v.1] What is Safely Authentication I am Assured of Which Host I

More information

Agent for VMware. Version

Agent for VMware. Version Agent for VMware Version 6.91.3631 Release Notes, March 7, 2012 CONTENTS 1 OVERVIEW... 3 1.1 Release History... 3 1.2 Supported Platforms... 3 2 FEATURES... 4 2.1 Features and Benefits... 4 3 INSTALLATION

More information

This is a guide about using Putty on Windows with OpenSSH on Linux. You would learn about how to:

This is a guide about using Putty on Windows with OpenSSH on Linux. You would learn about how to: 1 of 7 5/16/2011 5:37 PM Submitted by: Man-wai CHANG Update by: Man-wai CHANG Date Submitted: 31 May 2006 Document Version: 1.0 Last Updated: 08/01/2010 13:48:54 Last Updated: 02/02/2008 23:46:43 This

More information

Dell Storage Compellent Integration Tools for VMware

Dell Storage Compellent Integration Tools for VMware Dell Storage Compellent Integration Tools for VMware Version 4.0 Administrator s Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your

More information

NexentaStor VVOL

NexentaStor VVOL NexentaStor 5.1.1 VVOL Admin Guide Date: January, 2018 Software Version: NexentaStor 5.1.1 VVOL Part Number: 3000-VVOL-5.1.1-000065-A Table of Contents Preface... 3 Intended Audience 3 References 3 Document

More information

HP 3PAR Recovery Manager Software for Microsoft SQL Server

HP 3PAR Recovery Manager Software for Microsoft SQL Server HP 3PAR Recovery Manager 4.7.1 Software for Microsoft SQL Server User Guide This document is designed for System Administrators and Microsoft SQL Server Administrators who are experienced in using Microsoft

More information

OmniCube for vsphere Client

OmniCube for vsphere Client OmniCube for vsphere Client Administrator Guide OmniStack Software Version 2.1.5 OmniCube Administrator Guide for vsphere Client SimpliVity, the SimpliVity logo, OmniCube, OmniStack, OmniCube Accelerator,

More information

Dell Storage Integration Tools for VMware

Dell Storage Integration Tools for VMware Dell Storage Integration Tools for VMware Version 4.1 Administrator s Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION:

More information

HPE StoreVirtual Storage Application Aware Snapshot Manager Deployment Guide

HPE StoreVirtual Storage Application Aware Snapshot Manager Deployment Guide HPE StoreVirtual Storage Application Aware Snapshot Manager Deployment Guide Abstract This guide contains instructions for installing and deploying the StoreVirtual Application Aware Snapshot Manager to

More information

Enable SSH Access on the Tenable Virtual Appliance (4.4.x-4.7.x) Last Revised: February 27, 2018

Enable SSH Access on the Tenable Virtual Appliance (4.4.x-4.7.x) Last Revised: February 27, 2018 Enable SSH Access on the Tenable Virtual Appliance (4.4.x-4.7.x) Last Revised: February 27, 2018 Table of Contents Introduction 3 Requirements 4 Terminology 5 Generate the Key File 6 Generate a Key for

More information

Hewlett Packard Enterprise. HPE OmniStack for vsphere Upgrade Guide

Hewlett Packard Enterprise. HPE OmniStack for vsphere Upgrade Guide Hewlett Packard Enterprise HPE OmniStack for vsphere Upgrade Guide Part number: P00126-001 Published: September 2017 2017 Hewlett Packard Enterprise Development LP Notices The information contained herein

More information

How to Modify the NFS Block Size (Non-Disruptive)

How to Modify the NFS Block Size (Non-Disruptive) How to Modify the NFS Block Size (Non-Disruptive) How To#: 7329 Title: How to Modify the NFS Block Size (Non-Disruptive) Table of Contents Overview Risks Scope Resolution Prerequisites ESXi Hosts SimpliVity

More information

SnapCenter Software 4.1 Concepts Guide

SnapCenter Software 4.1 Concepts Guide SnapCenter Software 4.1 Concepts Guide August 2018 215-13392_A0 doccomments@netapp.com Table of Contents 3 Contents Deciding whether to read the Concepts Guide... 7 SnapCenter overview... 8 SnapCenter

More information

SimpliVity OmniStack Release Notes

SimpliVity OmniStack Release Notes SimpliVity OmniStack Release Notes Version 3.5.3 Update 1 www.simplivity.com Trademarks SimpliVity, SimpliVity cube logo, The SimpliVity Data Virtualization Company, OmniCube, OmniStack, Global Federated

More information

VMware App Volumes Installation Guide. VMware App Volumes 2.13

VMware App Volumes Installation Guide. VMware App Volumes 2.13 VMware App Volumes Installation Guide VMware App Volumes 2.13 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this

More information

Vembu VMBackup v3.1.3 GA

Vembu VMBackup v3.1.3 GA Vembu VMBackup v3.1.3 GA VEMBU TECHNOLOGIES www.vembu.com TRUSTED BY OVER 60,000 BUSINESSES Release Notes Vembu VMBackup v3.1.3 GA With enhanced features and fixes boosting stability and performance, Vembu

More information

This section describes the backup procedure for the RMS provisioning solution. Two types of backups are defined:

This section describes the backup procedure for the RMS provisioning solution. Two types of backups are defined: This section describes the backup procedure for the RMS provisioning solution. Two types of backups are defined: Full, on page 2 Application Data Backup, on page 4 A full system backup of the VM is recommended

More information

Remove complexity in protecting your virtual infrastructure with. IBM Spectrum Protect Plus. Data availability made easy. Overview

Remove complexity in protecting your virtual infrastructure with. IBM Spectrum Protect Plus. Data availability made easy. Overview Overview Challenge In your organization, backup management is too complex and consumes too much time and too many IT resources. Solution IBM Spectrum Protect Plus dramatically simplifies data protection

More information

Vembu BDR Suite v3.8.0 GA - Release Notes

Vembu BDR Suite v3.8.0 GA - Release Notes Vembu BDR Suite v3.8.0 GA - Release Notes VEMBU TECHNOLOGIES www.vembu.com Vembu BDR Suite v3.8.0 GA - Release Notes With enhanced features and fixes boosting stability and performance, Vembu BDR Suite

More information

Hewlett Packard Enterprise. SimpliVity OmniStack for vsphere Upgrade Guide

Hewlett Packard Enterprise. SimpliVity OmniStack for vsphere Upgrade Guide Hewlett Packard Enterprise SimpliVity OmniStack for vsphere Upgrade Guide Part number: 760-000245 Rev A Published: June 2017 Trademarks Patents Copyright SimpliVity,, SimpliVity cube logo, SimpliVity The

More information

LiveNX Upgrade Guide 8.0.x to 8.1.x

LiveNX Upgrade Guide 8.0.x to 8.1.x LIVEACTION, INC. LiveNX Upgrade Guide 8.0.x to 8.1.x UPGRADE LiveAction, Inc. 3500 Copyright WEST BAYSHORE 2016 LiveAction, ROAD Inc. All rights reserved. LiveAction, LiveNX, LiveUX, the LiveAction Logo

More information

Backup App V7. Quick Start Guide for Windows

Backup App V7. Quick Start Guide for Windows Backup App V7 Quick Start Guide for Windows Revision History Date Descriptions Type of modification 30 Jun 2016 First Draft New 25 Nov 2016 Added Restore Options to Ch 8 Restoring Data; Combined Technical

More information

IBM Spectrum Protect Snapshot for VMware 4.1.3

IBM Spectrum Protect Snapshot for VMware 4.1.3 IBM Spectrum Protect Snapshot for VMware 4.1.3 Objective of this document This document provides comprehensive information on the complete environment required to support IBM Spectrum Protect Snapshot

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 1.1 Data Protection Guide For Oracle Databases May 2016 215-10972_C0 doccomments@netapp.com Table of Contents 3 Contents Data protection using SnapCenter Plug-in for Oracle Database...

More information

Hewlett Packard Enterprise. SimpliVity OmniStack for vsphere Administration Guide

Hewlett Packard Enterprise. SimpliVity OmniStack for vsphere Administration Guide Hewlett Packard Enterprise SimpliVity OmniStack for vsphere Administration Guide Abstract This document describes administration procedures for OmniStack for vsphere. Part number: 760-000259 Rev A Published:

More information

REDCENTRIC VSPHERE AGENT VERSION

REDCENTRIC VSPHERE AGENT VERSION REDCENTRIC VSPHERE AGENT VERSION 7.36.5686 RELEASE NOTES, MAY 17, 2016 vsphere Agent Version 7.36.5686 Release Notes, May 17, 2016 Contents 1 OVERVIEW 1.1 Release History 1.2 Supported Platforms/VMware

More information

Mozy User Guide Document Revision Date: Sept. 18, 2013

Mozy User Guide Document Revision Date: Sept. 18, 2013 Mozy User Guide Document Revision Date: Sept. 18, 2013 Mozy User Guide i Contents Overview... 1 Installing Mozy... 2 Using the Settings Window... 3 Select Files to Back Up with the File System Tab... 10

More information

Microsoft SQL Server Database Protection Using EqualLogic Auto-Snapshot Manager / Microsoft Edition

Microsoft SQL Server Database Protection Using EqualLogic Auto-Snapshot Manager / Microsoft Edition Microsoft SQL Server Database Protection Using EqualLogic Auto-Snapshot Manager / Microsoft Edition Using EqualLogic Auto-Snapshot Manager / Microsoft Edition to perform online Smart Copy protection and

More information

OnCommand Workflow Automation 4.2 Installation and Setup Guide for Windows

OnCommand Workflow Automation 4.2 Installation and Setup Guide for Windows OnCommand Workflow Automation 4.2 Installation and Setup Guide for Windows February 2018 215-12608_B0 doccomments@netapp.com Table of Contents 3 Contents Overview of OnCommand Workflow Automation... 6

More information

Using VMware vsphere Replication. vsphere Replication 6.5

Using VMware vsphere Replication. vsphere Replication 6.5 Using VMware vsphere Replication 6.5 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this documentation, submit your

More information

SnapManager 7.2 for Microsoft Exchange Server Administration Guide

SnapManager 7.2 for Microsoft Exchange Server Administration Guide SnapManager 7.2 for Microsoft Exchange Server Administration Guide June 2017 215-10626_B0 doccomments@netapp.com Table of Contents 3 Contents Product overview... 8 Backing up and verifying your databases...

More information

Hitachi Data Instance Manager Software Version Release Notes

Hitachi Data Instance Manager Software Version Release Notes Hitachi Data Instance Manager Software Version 4.2.3 Release Notes Contents Contents... 1 About this document... 2 Intended audience... 2 Getting help... 2 About this release... 2 Product package contents...

More information

Setting up a Chaincoin Masternode

Setting up a Chaincoin Masternode Setting up a Chaincoin Masternode Introduction So you want to set up your own Chaincoin Masternode? You ve come to the right place! These instructions are correct as of April, 2017, and relate to version

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 3.0.1 Data Protection Guide For Oracle Databases November 2017 215-12686_A0 doccomments@netapp.com Table of Contents 3 Contents Deciding whether to read this information... 6 Data

More information

Zenoss Resource Manager Upgrade Guide

Zenoss Resource Manager Upgrade Guide Zenoss Resource Manager Upgrade Guide Release 5.3.2 Zenoss, Inc. www.zenoss.com Zenoss Resource Manager Upgrade Guide Copyright 2017 Zenoss, Inc. All rights reserved. Zenoss, Own IT, and the Zenoss logo

More information

Archiware Pure User Manual

Archiware Pure User Manual Archiware Pure User Manual Content 1 Preface... 3 1.1 About This Manual... 3 1.2 Who Should Read This Document?...3 1.3 Software Description... 3 1.4 Software Licensing... 3 1.5 Registration... 3 1.6 Technical

More information

Introduction. How Does it Work with Autodesk Vault? What is Microsoft Data Protection Manager (DPM)? autodesk vault

Introduction. How Does it Work with Autodesk Vault? What is Microsoft Data Protection Manager (DPM)? autodesk vault Introduction What is Microsoft Data Protection Manager (DPM)? The Microsoft Data Protection Manager is a member of the Microsoft System Center family of management products. DPM provides continuous data

More information

Zadara Enterprise Storage in

Zadara Enterprise Storage in Zadara Enterprise Storage in Google Cloud Platform (GCP) Deployment Guide March 2017 Revision A 2011 2017 ZADARA Storage, Inc. All rights reserved. Zadara Storage / GCP - Deployment Guide Page 1 Contents

More information

May 2018 Release Notes

May 2018 Release Notes May 2018 Release Notes Introduction This release note contains information regarding the May 2018 Release. This document provides important product information that may not be covered in the product manuals

More information

SnapCenter Software 4.0 Installation and Setup Guide

SnapCenter Software 4.0 Installation and Setup Guide SnapCenter Software 4.0 Installation and Setup Guide March 2018 215-12926_C0 doccomments@netapp.com Table of Contents 3 Contents Deciding whether to read the SnapCenter Installation and Setup Guide...

More information

Exchange Protection Whitepaper

Exchange Protection Whitepaper Whitepaper Contents 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. Introduction... 2 Documentation... 2 Licensing... 2 Exchange Server Protection overview... 3 Supported platforms... 3 Requirements by platform... 3 Remote

More information

Veritas NetBackup Plug-in for VMware vsphere Web Client Guide. Release 8.1.1

Veritas NetBackup Plug-in for VMware vsphere Web Client Guide. Release 8.1.1 Veritas NetBackup Plug-in for VMware vsphere Web Client Guide Release 8.1.1 Veritas NetBackup Plug-in for VMware vsphere Web Client Guide Last updated: 2018-02-16 Document version:netbackup 8.1.1 Legal

More information

Release Notes and User Guide DataCore vsphere Installation Manager 2.07

Release Notes and User Guide DataCore vsphere Installation Manager 2.07 Cumulative Change Summary Date 1.0 release Apr 18, 2016 Added direct link to VMware download site for Virtual Infrastructure extension (VIX) in Prerequisites Apr 21, 2016 1.1 release Jun 28, 2016 Added

More information

Disaster Recovery Workflow

Disaster Recovery Workflow CHAPTER 4 InMage CDP starts with the FX/VX agent, also known as "DataTap," which is used to monitor all writes to disk. A small amount of memory on the source machine is reserved by the DataTap (250MB).

More information

Setting up PuTTY. Software* Download PuTTY 6/9/18. Microsoft Windows 7 (64-bit) PuTTY 0.70 (64-bit) PuTTYgen 0.70 (64-bit) WinSCP 5.13.

Setting up PuTTY. Software* Download PuTTY 6/9/18. Microsoft Windows 7 (64-bit) PuTTY 0.70 (64-bit) PuTTYgen 0.70 (64-bit) WinSCP 5.13. Software* Setting up PuTTY CTEC1767 Data Communications & Networking CTEC1863 Operating Systems CTEC1906 Internet Computing Microsoft Windows 7 (64-bit) PuTTY 0.70 (64-bit) PuTTYgen 0.70 (64-bit) WinSCP

More information

Tandberg Data AccuGuard Enterprise for RDX Release Notes

Tandberg Data AccuGuard Enterprise for RDX Release Notes Tandberg Data AccuGuard Enterprise for RDX Release Notes Product: Release Number: Release Date: AccuGuard Enterprise for RDX 8.0.738.1 12/16/2014 8.0.593.1 07/24/2014 8.0.570.1 07/01/2014 8.0.369.1 12/11/2013

More information

IBM Spectrum Protect for Virtual Environments Version Data Protection for VMware Installation Guide IBM

IBM Spectrum Protect for Virtual Environments Version Data Protection for VMware Installation Guide IBM IBM Spectrum Protect for Virtual Environments Version 8.1.6 Data Protection for VMware Installation Guide IBM IBM Spectrum Protect for Virtual Environments Version 8.1.6 Data Protection for VMware Installation

More information

Hewlett Packard Enterprise. SimpliVity OmniStack for vsphere Events Reference Guide

Hewlett Packard Enterprise. SimpliVity OmniStack for vsphere Events Reference Guide Hewlett Packard Enterprise SimpliVity OmniStack for vsphere Events Reference Guide Part number: 760-000256 Rev A Published: June 2017 Trademarks Patents Copyright SimpliVity,, SimpliVity cube logo, SimpliVity

More information

Zenoss Resource Manager Upgrade Guide

Zenoss Resource Manager Upgrade Guide Zenoss Resource Manager Upgrade Guide Release 6.2.0 Zenoss, Inc. www.zenoss.com Zenoss Resource Manager Upgrade Guide Copyright 2018 Zenoss, Inc. All rights reserved. Zenoss, Own IT, and the Zenoss logo

More information

Configuring ApplicationHA in VMware SRM 5.1 environment

Configuring ApplicationHA in VMware SRM 5.1 environment Configuring ApplicationHA in VMware SRM 5.1 environment Windows Server 2003 and 2003 R2, Windows Server 2008 and 2008 R2 6.0 September 2013 Contents Chapter 1 About the ApplicationHA support for VMware

More information

VMware vsphere Data Protection Advanced 5.5

VMware vsphere Data Protection Advanced 5.5 Data Protection Advanced 5.5 EMC Data Domain Integration TECHNICAL WHITE PAPER Table of Contents Data Domain Configuration... 4 Architecture Overview.... 4 vsphere Data Protection Advanced Client Support....

More information

Technical Notes. EMC NetWorker SharePoint BLOB Backup and Recovery by using NetWorker Module for Microsoft and Metalogix StoragePoint TECHNICAL NOTES

Technical Notes. EMC NetWorker SharePoint BLOB Backup and Recovery by using NetWorker Module for Microsoft and Metalogix StoragePoint TECHNICAL NOTES EMC NetWorker SharePoint BLOB Backup and Recovery by using NetWorker Module for Microsoft and Metalogix StoragePoint Release number 8.2 Service Pack 1 TECHNICAL NOTES 302-001-241 REV 01 January, 2015 These

More information

Cryptography - SSH. Network Security Workshop May 2017 Phnom Penh, Cambodia

Cryptography - SSH. Network Security Workshop May 2017 Phnom Penh, Cambodia Cryptography - SSH Network Security Workshop 29-31 May 2017 Phnom Penh, Cambodia What is Safely Authentication I know who I am talking with Our communication is Encrypted Telnet Servers Terminal Routers

More information

Troubleshooting Cisco APIC-EM Single and Multi-Host

Troubleshooting Cisco APIC-EM Single and Multi-Host Troubleshooting Cisco APIC-EM Single and Multi-Host The following information may be used to troubleshoot Cisco APIC-EM single and multi-host: Recovery Procedures for Cisco APIC-EM Node Failures, page

More information

SnapManager 7.2 for Microsoft SQL Server Administration Guide

SnapManager 7.2 for Microsoft SQL Server Administration Guide SnapManager 7.2 for Microsoft SQL Server Administration Guide April 2017 215-09640_C0 doccomments@netapp.com Table of Contents 3 Contents Product overview... 6 Backing up and verifying your databases...

More information

NovaBACKUP Virtual Dashboard

NovaBACKUP Virtual Dashboard June 2016 NovaBACKUP Virtual Dashboard User Manual Features and specifications are subject to change without notice. The information provided herein is provided for informational and planning purposes

More information

Cryptography - SSH. Network Security Workshop. 3-5 October 2017 Port Moresby, Papua New Guinea

Cryptography - SSH. Network Security Workshop. 3-5 October 2017 Port Moresby, Papua New Guinea Cryptography - SSH Network Security Workshop 3-5 October 2017 Port Moresby, Papua New Guinea 1 What is Secure Authentication I know who I am talking to Our communication is Encrypted Telnet Servers Terminal

More information

Zenoss Resource Manager Upgrade Guide

Zenoss Resource Manager Upgrade Guide Zenoss Resource Manager Upgrade Guide Release 6.2.1 Zenoss, Inc. www.zenoss.com Zenoss Resource Manager Upgrade Guide Copyright 2018 Zenoss, Inc. All rights reserved. Zenoss, Own IT, and the Zenoss logo

More information

SSH. What is Safely 6/19/ June 2018 PacNOG 22, Honiara, Solomon Islands Supported by:

SSH. What is Safely 6/19/ June 2018 PacNOG 22, Honiara, Solomon Islands Supported by: SSH 25-29 June 2018 PacNOG 22, Honiara, Solomon Islands Supported by: Issue Date: Revision: 1 What is Safely Authentication I am Assured of Which Host I am Talking With Authentication - The Host Knows

More information

LiveNX BACKUP GUIDE. LiveAction, Inc. LIVEACTION, INC.

LiveNX BACKUP GUIDE. LiveAction, Inc. LIVEACTION, INC. LIVEACTION, INC. LiveNX BACKUP GUIDE LiveAction, Inc. 3500 Copyright WEST BAYSHORE 2008-2016 ROAD LiveAction, Inc. All rights reserved. LiveAction, LiveNX, LiveUX, the LiveAction Logo and PALO LiveAction

More information

IBM Spectrum Protect for Virtual Environments Version Data Protection for VMware Installation Guide IBM

IBM Spectrum Protect for Virtual Environments Version Data Protection for VMware Installation Guide IBM IBM Spectrum Protect for Virtual Environments Version 8.1.2 Data Protection for VMware Installation Guide IBM IBM Spectrum Protect for Virtual Environments Version 8.1.2 Data Protection for VMware Installation

More information

Installing and Upgrading Cisco Network Registrar Virtual Appliance

Installing and Upgrading Cisco Network Registrar Virtual Appliance CHAPTER 3 Installing and Upgrading Cisco Network Registrar Virtual Appliance The Cisco Network Registrar virtual appliance includes all the functionality available in a version of Cisco Network Registrar

More information

Vembu BDR Suite v3.9.0 GA - Release Notes

Vembu BDR Suite v3.9.0 GA - Release Notes Vembu BDR Suite v3.9.0 GA - Release Notes VEMBU TECHNOLOGIES www.vembu.com Vembu BDR Suite v3.9.0 GA - Release Notes With enhanced features and fixes boosting stability and performance, Vembu BDR Suite

More information

Installation of Informatica Services on Amazon EC2

Installation of Informatica Services on Amazon EC2 Installation of Informatica Services on Amazon EC2 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

IBM Spectrum Protect for Virtual Environments Version Data Protection for VMware User's Guide IBM

IBM Spectrum Protect for Virtual Environments Version Data Protection for VMware User's Guide IBM IBM Spectrum Protect for Virtual Environments Version 8.1.2 Data Protection for VMware User's Guide IBM IBM Spectrum Protect for Virtual Environments Version 8.1.2 Data Protection for VMware User's Guide

More information

Dell Compellent Storage Center with CommVault Simpana 9.0. Best Practices

Dell Compellent Storage Center with CommVault Simpana 9.0. Best Practices Dell Compellent Storage Center with CommVault Simpana 9.0 Best Practices Document revision Date Revision Comments 1/30/2012 A Initial Draft THIS BEST PRACTICES GUIDE IS FOR INFORMATIONAL PURPOSES ONLY,

More information

IBM Spectrum Protect for Virtual Environments Version Data Protection for Microsoft Hyper-V Installation and User's Guide IBM

IBM Spectrum Protect for Virtual Environments Version Data Protection for Microsoft Hyper-V Installation and User's Guide IBM IBM Spectrum Protect for Virtual Environments Version 8.1.4 Data Protection for Microsoft Hyper-V Installation and User's Guide IBM IBM Spectrum Protect for Virtual Environments Version 8.1.4 Data Protection

More information

Storage Replication Adapter for VMware vcenter SRM. April 2017 SL10334 Version 1.5.0

Storage Replication Adapter for VMware vcenter SRM. April 2017 SL10334 Version 1.5.0 Storage Replication Adapter for VMware vcenter SRM April 2017 SL10334 Version 1.5.0 1 Introduction This lab introduces the fundamentals of VMware vcenter Site Recovery Manager on clustered Data ONTAP.

More information

Deep Dive on SimpliVity s OmniStack A Technical Whitepaper

Deep Dive on SimpliVity s OmniStack A Technical Whitepaper Deep Dive on SimpliVity s OmniStack A Technical Whitepaper By Hans De Leenheer and Stephen Foskett August 2013 1 Introduction This paper is an in-depth look at OmniStack, the technology that powers SimpliVity

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.6 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

IBM Spectrum Protect Plus Version Installation and User's Guide IBM

IBM Spectrum Protect Plus Version Installation and User's Guide IBM IBM Spectrum Protect Plus Version 10.1.1 Installation and User's Guide IBM Note: Before you use this information and the product it supports, read the information in Notices on page 119. Third edition

More information

What s New (v4.0 to v5.0) Thinware vbackup 5.0.0

What s New (v4.0 to v5.0) Thinware vbackup 5.0.0 What s New (v4.0 to v5.0) Thinware vbackup 5.0.0 Thinware vbackup version 5.0 has many new features. This document will simply cover the highpoints on what s new mostly for the purpose of helping you understand

More information

Restoring the Server to Bare Metal

Restoring the Server to Bare Metal Restoring the Server to Bare Metal Figure 19 below shows a virtual machine named Bare Metal System. As you can see, when we try to boot the system the boot fails because there is no operating system installed

More information

Tasks for node maintenance with a non-failed nodes.

Tasks for node maintenance with a non-failed nodes. , page Identify Node Maintenance Methods, page 3 Searching by DNS Address or Host Name, page 5 Changing ESXi Host Root Password, page 5 Reinstalling Node Software, page 6 Changing Node Identification Form

More information