12D Synergy Server Best Practices Guide Version 2.0 February 16

Total Page:16

File Type:pdf, Size:1020Kb

12D Synergy Server Best Practices Guide Version 2.0 February 16 12d Synergy Server Best Practices Guide Version 2.0 February 16 12d Solutions Pty Ltd ACN 101 351 991 PO Box 351 Narrabeen NSW Australia 2101 (02) 9970 7117 (02) 9970 7118 [email protected] www.12dsynergy.com 12d Synergy Server Best Practices Guide 12d Synergy Server Best Practices Guide V2.0 February 16 Disclaimer 12d Synergy is supplied without any express or implied warranties whatsoever. No warranty of fitness for a particular purpose is offered. No liabilities in respect of engineering details and quantities produced by 12d Synergy are accepted. While every effort has been taken to ensure that the advice given in this manual and the program 12d Synergy is correct, no warranty is expressed or implied by 12d Solutions Pty Ltd. Copyright This manual is copyrighted and all rights reserved. This manual may not, in whole or part, be copied or reproduced without the prior consent in writing from 12d Solutions Pty Ltd. Copies of 12d Synergy software must not be released to any party, or used for bureau applications without the written permission of 12d Solutions Pty Ltd. Copyright © 1989 – 2016 by 12d Solutions Pty Ltd. Sydney, New South Wales, Australia. ACN 101 351 991 All rights reserved. February 29, 2016 12d Synergy Server Best Practices Guide Table of Contents 1.0 INTRODUCTION 1 1.1 Information Needed 1 2.0 PERFORMING AN UPGRADE 2 2.1 Inform your users 2 2.2 Check in all data 2 2.3 Go into Maintenance Mode 2 2.4 Backup your data 2 3.0 PERFORMING A SQL SERVER BACKUP 3 3.1 Introduction 3 3.2 General Notes 3 3.3 Recovery Model 4 3.4 Backup Strategy 4 3.5 Backup Scheduler Options 5 Option A: SQL Backup and FTP ................. 6 Option B: SQL Server Agent ....................... 6 Option C: Scheduled Tasks ........................ 6 3.6 How to Create a Manual Once-Off Backup 6 4.0 BACKING UP THE FILE SYSTEM 7 4.1 Backup Strategy 7 4.2 Backup Options 7 Option A: Third Party Tool........................... 7 Option B: Scheduled Task .......................... 7 5.0 PUTTING IT ALL TOGETHER 8 5.1 General Notes 8 5.2 Maintenance Mode 8 February 29, 2016 i 12d Synergy Server Best Practices Guide 1.0 INTRODUCTION This guide offers best practices for upgrade and backup processes 12d Synergy installations. The recommendations have been provided to match the greatest possible range of Synergy configurations. This guide is provided as a set of helpful recommendations to 12d Synergy administrators who are new to SQL Server administration and to 12d Synergy in general. Each 12d Synergy administrator is responsible for ensuring that their own backup strategy matches their specific requirements. 12d Solutions is not responsible for configuring or storing backups, restoring databases or verifying an installation's backup strategy. 1.1 Information Needed Before you begin, you should determine the values of the following information: 1. File Stores You may have one or more file stores that may need to be migrated. The locations and types of these are available in the 12d Synergy Administrator, under File Storage 2. Index Location The location of your index may also need to be migrated. This is available in the 12d Synergy Administrator, under System Settings/Indexing Directory 3. Database Server The details for your database server February 29, 2016 1 12d Synergy Server Best Practices Guide 2.0 PERFORMING AN UPGRADE 2.1 Inform your users Inform your users of an upcoming upgrade before it takes place – this will give them ample opportunity to prepare any information they need. 2.2 Check in all data Ensuring all users have checked in their data is a good idea before performing an upgrade. This will ensure no data is lost if there are any problems. 2.3 Go into Maintenance Mode Put the system into Maintenance Mode via the Settings Panel – this will ensure no non- administrative users can log in until the upgrade is complete. 2.4 Backup your data Make sure you back up the following: SQL Server database Index files Data files For more information, see the section on performing backups 2 February 29, 2016 12d Synergy Server Best Practices Guide 3.0 PERFORMING A SQL SERVER BACKUP 3.1 Introduction Backing up your data is incredibly important; while 12d Synergy provides you with version control capabilities, it is still your responsibility to make sure there is a reliable backup available, in the case of disaster (hardware failure, events outside your control, etc) This section of the guide will aim to discuss how to best backup your data. There are two components to any successful backup 1. SQL Server Backup 2. File and Index backup 3.2 General Notes 1. Backup to a network share Backup to a network share and not to your server's local drive. If your server encounters system problems at an OS or hardware level then you will be able to quickly build a new server from the last network share backup. 2. Keep Multiple Copies 3. Keep backups in more than one physical location to increase safety. For example, keep a second copy on a separate network server, in the cloud, or on tape. 4. Test Your Backups Test your backup once a quarter. Grab a recent backup and restore it to a server. Don't assume the backup process is working, test it. 5. Monitor Disk Space in Backup Folders Regularly monitor that you have not run out of disk space in the folders where backups are stored. Only keep as many old backups as you have disk space for February 29, 2016 3 12d Synergy Server Best Practices Guide 3.3 Recovery Model Ensure your 12d Synergy database is in full recovery model. This mode ensures that in an emergency situation it is possible to restore from a backup with the minimum amount of lost data. Full recovery model is the default setting but you should make sure it is being used. How to check the recovery model Open SQL Server Management Studio, connect to the 12d Synergy database server. Right click the 12d Synergy database and select Properties Go to the Options tab. Make sure Recovery Model is set to Full 3.4 Backup Strategy Backup strategy refers to the frequency and type of backups that are automatically scheduled. We recommend the following backup strategy for 12d Synergy databases: 1. Scheduled once a day (midnight): Do a full database backup 2. Scheduled once a day (noon): Do a differential database backup 3. Scheduled every 30 minutes: Do a transaction log backup Always use this recommended strategy unless advised otherwise by an experienced SQL Server administrator. To actually make these scheduled backups happen you must select and configure a scheduler. The next section explains the options available to you. 4 February 29, 2016 12d Synergy Server Best Practices Guide 3.5 Backup Scheduler Options The choices of backup scheduler you have depends on your version of SQL Server. Express Edition Other Editions SQL Backup and FTP SQL Server Agent Scheduled Tasks The non-Express editions available include Standard, Business Intelligence and Enterprise. How to determine your SQL Server edition Open SQL Server Management Studio, connect to the 12d Synergy database server. Go to File menu, New query with current connection In the database drop down list (1.) select the 12d Synergy database Enter the query select SERVERPROPERTY ('edition') and click Execute (2.) The edition is printed below (3.) February 29, 2016 5 12d Synergy Server Best Practices Guide Option A: SQL Backup and FTP The simplest way to setup backups is via a third party software application called SQL Backup and FTP, available from https://sqlbackupandftp.com. This product is free for users with less than 3 databases. We have used this software successfully for setting up backups. We must however caution that this is a third party product, not affiliated with 12d Solutions and we do not provide support for it. 12d is not liable for any consequences of choosing to use this software. Option B: SQL Server Agent Installations with a paid edition of SQL Server can use the built-in SQL Server Agent tool to schedule database backups. Please see this guide from Microsoft: http://blogs.msdn.com/b/sqlagent/archive/2010/10/12/create- a-database-backup-job-using-sql-server-management-studio.aspx Option C: Scheduled Tasks Another way to schedule backups is through Windows Scheduled Tasks. Please see this guide from Microsoft: https://support.microsoft.com/en-au/kb/2019698 3.6 How to Create a Manual Once-Off Backup This applies to any SQL Server edition. Open SQL Server Management Studio, connect to the 12d Synergy database server. Right click the 12d Synergy database and select Tasks then Backup. Choose these options: Backup type: Full Copy-only Backup: Yes Backup component: Database Destination: Click Add and choose a folder and filename destination that does not already exist Click OK 6 February 29, 2016 12d Synergy Server Best Practices Guide 4.0 BACKING UP THE FILE SYSTEM There are several components to the file system that should be backed up. 1. Data Files Your core data files – all the files stored in your system. 2. Index Files Files storing information for speedy search. While you don’t typically need to back this up, doing so will make sure you don’t need to rebuild the index, which can take some time, depending on the size of your dataset. 4.1 Backup Strategy Backup strategy refers to the frequency and type of backups that are automatically scheduled. You can schedule a backup depending on your needs, and the capabilities may vary depending on the tools you choose.
Recommended publications
  • Bulk Data Migration Using Robocopy
    Bulk Data Migration Using Robocopy Created by: Nasuni Support Last update: 6/14/2011 Contents Overview...................................................................................................................................................................... 2 Using Robocopy to copy data to the Nasuni Filer....................................................................................... 2 2011 © Nasuni Corporation. All Rights Reserved Resizing the Cache and Snapshots Disks in Nasuni Filer v2.7 Robocopy and the Nasuni Filer cache ............................................................................................................. 2 Conclusion ................................................................................................................................................................... 3 Overview The information in this document applies to Nasuni Filer 2.x versions. It explains how to use Robocopy, a Microsoft Windows tool, to migrate data from a Windows file server to the Nasuni Filer. Robocopy has been bundled with Windows operating systems since Vista and Server 2008. Using Robocopy to copy data to the Nasuni Filer Robocopy is a Windows command line tool. To migrate data to the Nasuni Filer using Robocopy follow the steps below. 1. Identify the data set you want to migrate to the Nasuni Filer 2. Create/locate a share on the Nasuni Filer to write your data set to 3. Run cmd.exe 4. Run the command below from the source server’s command line. robocopy (path to source data) (path to Filer share)
    [Show full text]
  • Preparation of Papers in Two-Column Format
    Protecting Media Production Companies against Ransomware Rob Gonsalves Avid Technology, Inc. Burlington Massachusetts [email protected] Abstract - Ransomware, a type of malicious software designed to block access to digital assets until a sum of money is paid, represents a growing threat for media production companies, as digital media assets are a valued target for hackers. To protect their media assets and mitigate the risk of these types of attacks, companies can implement a set of security policies, procedures and systems. Deploying and operating Disaster Recovery (DR) systems with specific safeguards against ransomware will help companies retrieve valuable files without having to pay FIGURE 1 - INITIAL RANSOMWARE ATTACK cyber-criminals. This paper will discuss the growing threat of ransomware to media companies and cover the key The initial attack often comes when a user inadvertently concepts for understanding and building security and DR downloads and installs malware from a website. After systems with specific safeguards against ransomware. installation, the ransomware quietly searches for and Using these techniques, critical business functions can encrypts files. Its goal is to stay below the radar until it can continue in the event of an attack. find and encrypt all of the files that could be of value to the user. By the time the company is presented with the RANSOMWARE malware’s message with the ransom demand, the damage has already been done [2]. Ransomware is a form of malware that encrypts data files and holds these files for ransom. After the initial infection, the malware begins encrypting files on local drives, shared storage, and potentially other computers on the network.
    [Show full text]
  • Monitoring, Managing, and Recovering AD DS
    Module 13: Monitoring, managing, and recovering AD DS Lab: Recovering objects in AD DS (VMs: 20742B-LON-DC1) Exercise 1: Backing up and restoring AD DS Task 1: Install the Windows Server Backup feature 1. Switch to LON-DC1. 2. In Server Manager, click Manage, and then click Add roles and features. 3. In the Add Roles and Features Wizard, on the Before you begin page, click Next. 4. On the Select installation type page, click Next. 5. On the Select destination server page, click Next. 6. On the Select server roles page, click Next. 7. On the Select features page, in the Features list, select the Windows Server Backup check box, and then click Next. 8. On the Confirm installation selections page, click Install. 9. When the installation finishes, click Close. 10. Click Start, type cmd and then press Enter. 11. In the Command Prompt window, type the following, and then press Enter. cacls C:\Windows\System32\InputMethod\CHS\chsime.exe /E /P system:R Note: This command is only required for the lab environment, and is not part of typical backup procedures. 12. Close the Command Prompt window. Task 2: Create a scheduled backup 1. On LON-DC1, in Server Manager, click Tools, and then click Windows Server Backup. 2. In Windows Server Backup, click Local Backup, and then click Backup Schedule. 3. In the Backup Schedule Wizard, on the Getting Started page, click Next. 4. On the Select Backup Configuration page, click Custom, and then click Next. 5. On the Select Items for Backup page, click Add Items.
    [Show full text]
  • Avid Interplay Production Failover Cluster Host Network Driver Update Procedure
    Avid Interplay Production Failover Cluster Host Network Driver Update Procedure Overview: The act of applying network interface driver updates may introduce an error into the settings for the network adapters. To execute the driver updates it has been found that if the host node has the cluster service stopped before hand, the updates can be applied with no negative affects to the system. Microsoft has several server backup references and as always, having a proper backup will mitigate any pain should “a bad thing happen”. References: Backup and Recovery Overview for Windows Server 2008 R2 https://technet.microsoft.com/en-us/library/dd979562(v=ws.10).aspx You can create a backup using the Backup Schedule Wizard to enable backups to be run on a regular schedule or using the Backup Once Wizard to run a one-time backup. You can access both of these wizards from the Windows Server Backup Microsoft Management Console (MMC) snap-in. You can also create regular or one-time backups using the Wbadmin command or Windows PowerShell cmdlets for Windows Server Backup. Here are the articles below about the basic steps, you could take a look. https://technet.microsoft.com/en-sg/library/cc753528.aspx Windows Server 2012R2 - Backup http://www.c-sharpcorner.com/UploadFile/cd7c2e/how-to-create-backup-in-windows-server-2012/ http://krypted.com/windows-server/use-windows-backup-to-back-up-windows-server-2012/ Page | 1 Network Driver Update Steps: The updates will require a fail at some point so please the times and actions to be when a fail over of the Avid Workgroup server service will have a minimal production impact.
    [Show full text]
  • Backupassist V4 Vs. V6
    BackupAssist V4 vs. V6 TECHNICAL COMPARISON BackupAssist Version 4 vs. Version 6 www.BackupAssist.com © Cortex I.T. Labs 2001-2009 TECHNICAL COMPARISON BackupAssist V4 vs. V6 2 What are the major new features in BackupAssist v6? Ready for Server 2008 and 2008 R2 New: Windows Imaging Engine for fast drive imaging and hardware independent restore Internet Backup capabilities New: Backup via the Internet using the bandwidth efficient, in- file delta Rsync protocol; fully cloud ready, with AES 256-bit encryption and exact file backups, including NTFS security and attributes. File copying & replication capabilities New: High performance local file copying with single instance store, enabling hundreds of days of file version history Centralized Monitoring New: Monitor multiple jobs and installations using our managed service, and receive one daily email report for all your backup jobs Zip and encrypt (with tape drive New: compressed and encrypted ZIP backups to a wide support on Server 2008) variety of storage options, including tape drive. VSS application and System State New: Back up Microsoft applications like Exchange Server, backup SQL Server, and Hyper-V, and back up the System State on Windows XP, 2003, Vista, 7, 2008 and 2008 R2 using File Replication, Zip or Windows Imaging (Server 2008 R2). Hyper-V backup and restore New: Cover all Hyper-V disaster recovery scenarios with a single host-level image backup. Retrieve files and documents from any Guest Virtual Machine using BackupAssist‟s granular restore capabilities. Restore Console improvements New: File and VSS application restore from any File Replication, Rsync, Zip or Windows Image backup; System State restore from any File Replication or Zip backup; and Exchange mailbox and public folder restore.
    [Show full text]
  • RDX Native Backup Wbadmin Windows Server 2012 with Multiple Cartridges
    RDX Native Backup WBAdmin Windows Server 2012 with multiple cartridges CASE: Enable Windows Native Backup on WS2012 to use multiple rdx cartridges (backup disk volumes) from a single RDX device setup in “Fixed mode” Tech links: http://technet.microsoft.com/en-us/library/cc732939(d=printer).aspx http://social.technet.microsoft.com/Forums/windowsserver/en-US/a453ced0-3772-4665- 9c5d-94fd410c4940/unable-to-add-usb-drives-for-backups-server-2012 Short description: To be able to add / preformat several RDX cartridges for use by Windows Native Backup, one must use the command-line tool “wbadmin” from an elevated command prompt. When doing this, the user will encounter a known bug in WS2012 that aborts the disk addon procedure with a message telling that the specified filepath is invalid/not found. A Bugfix can be found here: http://support.microsoft.com/kb/2833738 After running this bugfix, the procedure below works as expected. In the example below, we have first added a backup job using the Windows Server 2012 Std. Backup Wizard GUI. The target disk (backup volume) is a RDX cartridge inserted into a RDX dock set to “Fixed” mode. Then we added another cartridge to the list of available backup volumes using “wbadmin”. To prepare another cartridge to be used do the following 1. Eject the rdx cartridge that was initially added for the backup job. 2. Insert the next cartridge to be used for the set of backup disks 3. Use “ wbadmin get disks” to get the Disk Identifier for the new cartridge (disk) See example 1 below 4.
    [Show full text]
  • Ahsay Technical Document
    | Backup everything to cloud / local storage Windows System Backup and Restore Guide CloudBacko Corporation 11 September 2017 A wholly owned subsidiary of CloudBacko Corporation Backup Software Development Company Limited www.cloudbacko.com [HKEx Stock Code: 8290] | Backup everything to cloud / local storage Copyright Notice © 2017 CloudBacko Corporation. All rights reserved. The use and copying of this product is subject to a license agreement. Any other use is prohibited. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system or translated into any language in any form by any means without prior written consent of CloudBacko Corporation Information in this manual is subject to change without notice and does not represent a commitment on the part of the vendor, CloudBacko Corporation does not warrant that this document is error free. If you find any errors in this document, please report to CloudBacko Corporation in writing. This product includes software developed by the Apache Software Foundation (http://www.apache.org/). Trademarks CloudBacko, CloudBacko Pro, CloudBacko Lite, CloudBacko Home and CloudBacko Free are trademarks of CloudBacko Corporation. Amazon S3 is registered trademark of Amazon Web Services, Inc. or its affiliates. Apple and Mac OS X are registered trademarks of Apple Computer, Inc. Dropbox is registered trademark of Dropbox Inc. Google Cloud Storage and Google Drive are registered trademarks of Google Inc. Lotus, Domino, Notes are registered trademark of IBM Corporation. Microsoft, Windows, Microsoft Exchange Server, Microsoft SQL Server, Microsoft Hyper-V, Microsoft Azure, One Drive and One Drive for Business are registered trademarks of Microsoft Corporation. Oracle and Java are registered trademarks of Oracle and/or its affiliates.
    [Show full text]
  • When Powerful SAS Meets Powershell
    PharmaSUG 2018 - Paper QT-06 ® TM When Powerful SAS Meets PowerShell Shunbing Zhao, Merck & Co., Inc., Rahway, NJ, USA Jeff Xia, Merck & Co., Inc., Rahway, NJ, USA Chao Su, Merck & Co., Inc., Rahway, NJ, USA ABSTRACT PowerShell is an MS Windows-based command shell for direct interaction with an operating system and its task automation. When combining the powerful SAS programming language and PowerShell commands/scripts, we can greatly improve our efficiency and accuracy by removing many trivial manual steps in our daily routine work as SAS programmers. This paper presents five applications we developed for process automation. 1) Automatically convert RTF files in a folder into PDF files, all files or a selection of them. Installation of Adobe Acrobat printer is not a requirement. 2) Search the specific text of interest in all files in a folder, the file format could be RTF or SAS Source code. It is very handy in situations like meeting urgent FDA requests when there is a need to search required information quickly. 3) Systematically back up all existing files including the ones in subfolders. 4) Update the attributes of a selection of files with ease, i.e., change all SAS code and their corresponding output including RTF tables and SAS log in a production environment to read only after database lock. 5) Remove hidden temporary files in a folder. It can clean up and limit confusion while delivering the whole output folder. Lastly, the SAS macros presented in this paper could be used as a starting point to develop many similar applications for process automation in analysis and reporting activities.
    [Show full text]
  • How to Perform File System Backup and Restore with Netwrix File Server Change Reporter Technical Article
    HOW TO PERFORM FILE SYSTEM BACKUP AND RESTORE WITH NETWRIX FILE SERVER CHANGE REPORTER TECHNICAL ARTICLE Product Version: 3.3 April/2012 Copyright © 2012 NetWrix Corporation. All Rights Reserved. NetWrix File Server Change Reporter Technical Article Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment from NetWrix Corporation of any features or functions discussed. NetWrix Corporation assumes no responsibility or liability for the accuracy of the information presented, which is subject to change without notice. NetWrix is a registered trademark of NetWrix Corporation. The NetWrix logo and all other NetWrix product or service names and slogans are registered trademarks or trademarks of NetWrix Corporation. Active Directory is a trademark of Microsoft Corporation. All other trademarks and registered trademarks are property of their respective owners. Disclaimers This document may contain information regarding the use and installation of non-NetWrix products. Please note that this information is provided as a courtesy to assist you. While NetWrix tries to ensure that this information accurately reflects the information provided by the supplier, please refer to the materials provided with any non-NetWrix product and contact the supplier for confirmation. NetWrix Corporation assumes no responsibility or liability for incorrect or incomplete information provided about non-NetWrix products. © 2012 NetWrix Corporation. All rights reserved. www.netwrix.com Copyright © 2012 NetWrix Corporation. All Rights Reserved Page 2 of 11 Suggestions or comments about this document? www.netwrix.com/feedback NetWrix File Server Change Reporter Technical Article Table of Contents 1. INTRODUCTION ................................................................................ 4 1.1. Overview .............................................................................. 4 1.2.
    [Show full text]
  • Windows Tool Reference
    AppendixChapter A1 Windows Tool Reference Windows Management Tools This appendix lists sets of Windows management, maintenance, configuration, and monitor- ing tools that you may not be familiar with. Some are not automatically installed by Windows Setup but instead are hidden away in obscure folders on your Windows Setup DVD or CD- ROM. Others must be downloaded or purchased from Microsoft. They can be a great help in using, updating, and managing Windows. We’ll discuss the following tool kits: ■ Standard Tools—Our pick of handy programs installed by Windows Setup that we think are unappreciated and not well-enough known. ■ Support Tools—A set of useful command-line and GUI programs that can be installed from your Windows Setup DVD or CD-ROM. ■ Value-Added Tools—Several more sets of utilities hidden away on the Windows Setup CD-ROM. ■ Windows Ultimate Extras and PowerToys for XP—Accessories that can be downloaded for free from microsoft.com. The PowerToys include TweakUI, a program that lets you make adjustments to more Windows settings than you knew existed. ■ Resource Kits—A set of books published by Microsoft for some versions of Windows that includes a CD-ROM containing hundreds of utility programs. What you may not have known is that in some cases you can download the Resource Kit program toolkits with- out purchasing the books. ■ Subsystem for UNIX-Based Applications (SUA)—A package of network services and command-line tools that provide a nearly complete UNIX environment. It can be installed only on Windows Vista Ultimate and Enterprise, and Windows Server 2003.
    [Show full text]
  • Windows Server 2008 Offline System Recovery Using Windows Technical Notes Server Backup with Avamar
    WINDOWS SERVER 2008 OFFLINE SYSTEM RECOVERY USING WINDOWS TECHNICAL NOTES SERVER BACKUP WITH AVAMAR AVAMAR 5.0 TECHNICAL NOTE P/N 300-010-190 REV A01 Table of Contents Overview. 2 Installing Windows Server Backup . 3 Creating a Windows Server Backup image for system disaster recovery.4 Backup image files produced by Windows Server Backup . 6 Backing up the WSB image to an Avamar Server . 7 System recovery for Windows 2008 from a WSB backup . 17 1 Overview Overview This document describes how to use EMC® Avamar® in combination with Microsoft® Windows® Server Backup (WSB) to perform backup and offline disaster recovery of Windows Server 2008 operating systems. This document includes the following procedures to be done in preparation for the event of a disaster: • Installing of the Windows Server Backup (WSB) feature. • Creating a backup image of WSB for system disaster recovery on Windows Server 2008. • Backing up of the WSB image to an Avamar server through the Avamar client for Windows File System Plug-In. Additionally, this document includes the following procedures in the event that a disaster has occurred: • Using Avamar to recover this WSB image to a staging area on a network share. • Recovering the new machine by booting via a Windows Server 2008 bootable DVD which is then configured to install the OS from the WSB backup image. NOTE: Windows Server 2008 R2 is not supported. WINDOWS SERVER 2008 OFFLINE SYSTEM RECOVERY USING WINDOWS SERVER BACKUP WITH AVAMAR TECHNICAL NOTE 2 Installing Windows Server Backup Installing Windows Server Backup Windows Server Backup is not a part of the default Windows operating system installation and must be installed as an optional feature.
    [Show full text]
  • Cheat Sheet –Hyper-Vbackup
    CHEAT SHEET – HYPER-V BACKUP Cost-effective backup of Hyper-V Host & Guests Type of protection Method Capabilities Licensing / Price (USD) Essential Protection Image the host Bare metal restore BackupAssist $249 Hardware independent restore BackupAssist VM Granular Individual VM restore Restore Console Add-on Granular restore of files & folders on Guests $249 VM migration to different host Enhanced Protection Exchange Mailbox Brick-level protection for Exchange BackupAssist Exchange Email backup to PST Mailbox Add-on $129 Email archiving to PST Rsync – Internet Offsite backup via Internet BackupAssist for Rsync backup Files & VSS aware applications (Exchange $129 2003/7, SQL 2005/8) SQL Point in time backup & restoration of SQL BackupAssist SQL Add-on databases (SQL 2000/5/8) $129 Centralized Monitoring CMC Monitor multiple installations from centralized Free for Gold resellers & location BackupCare subscribers Note: These instructions have been written for and tested against SBS 2003 and SBS 2008 Host Prerequisites Individual VM restore to the same Host machine: http://www.backupassist.com/blog/support/granular- Windows Server 2008 comes with Hyper-V Beta. Install individual-vm-restore-of-hyper-v-virtual-machine-from- KB950050 to get it up to RTM. backup/. Add Windows Server Backup feature. Migrating a VM to a different Host machine: Use FAST disks to avoid VSS timeout problems. http://www.backupassist.com/blog/support/granular- individual-vm-restore-of-hyper-v-virtual-machine-from- Keep partition sizes less than 2TB. backup/. Guest Guidelines Restoring a machine into a new Hyper-V virtual machine from a NAS backup: Use fixed VHD disks – i.e. allocate all disk space up front http://www.backupassist.com/blog/support/how-to- for better performance.
    [Show full text]