Presentation is loading. Please wait.

Presentation is loading. Please wait.

Jason Buffington Senior Technical Product Manager Microsoft Corporation Session Code: MGT401

Similar presentations


Presentation on theme: "Jason Buffington Senior Technical Product Manager Microsoft Corporation Session Code: MGT401"— Presentation transcript:

1

2 Jason Buffington Senior Technical Product Manager Microsoft Corporation Session Code: MGT401 jbuff@microsoft.comhttp://JasonBuffington.com

3 This is a Three Part Series MGT204 – Technical Introduction Overview of DPM 2007 DEMO – Protecting Windows data How it really works DEMO – Recovering data Other stuff MGT316 – Protecting Applications Exchange SQL Server SharePoint Virtual Server MGT401 – Advanced Features Disaster Recovery Command Line control via PowerShell™ and Pre-/Post- Scripting Monitoring with System Center Operations Manager Bare Metal Recovery … with the System Recovery Tool (SRT)

4 Agenda Disaster Recovery Command-Line control with PowerShell™ Pre-/Post- Scripting System Center Operations Manager – Management Pack SRT – System Recovery Tool Questions and Answers

5 DPM 2007 sp1 Online Snapshots (up to 512) Disk-basedRecovery Active Directory ® System State file shares and directories Up to Every 15 minutes Tape-basedBackup DPM 2007 Continuous Data Protection (CDP) for Windows application and file servers Continuous Data Protection (CDP) for Windows application and file servers Rapid and reliable recovery from disk instead of tape Rapid and reliable recovery from disk instead of tape Advanced technology for enterprises of all sizes Advanced technology for enterprises of all sizes Disaster Recovery with offsite replication & tape DPM 2007 sp1

6 Enterprise DPML – “Application Agent” – per protected server Unified support of Microsoft applications SQL, Exchange, SharePoint, & Virtualization – and files Protect DPM 2 DPM 4 DR – disaster recovery Bare Metal Recovery Standard DPML = “File agent” per protected Windows Server No additional “Open File” or add-on modules file shares and directories Client DPML “Desktop agent” XP Pro & Vista business Up to Every 15 minutes DPM 2007 with integrated Disk & Tape Also available as a DPM OEM Appliance running on Windows Storage Server DPM Server Active Directory ® System State Pricing guidance posted on microsoft.com/DPM file shares and directories

7 Protected Platforms Microsoft platforms with VSS capabilities Microsoft ® Office SharePoint ® Server 2007 Windows ® SharePoint ® Services version 3.0 Microsoft ® Office SharePoint ® Portal Server 2003 – protected as SQL databases Windows ® SharePoint ® Services version 2.0 – protected as SQL databases Microsoft ® SQL Server 2000 Service Pack 4 Microsoft ® SQL Server™ 2005 Microsoft ® SQL Server™ 2008 Microsoft ® Exchange Server 2003 Service Pack 2 Microsoft ® Exchange Server 2007 – including LCR, CCR, and SCR configurations Microsoft ® Virtual Server 2005 R2 Service Pack 1 Hyper-V™ Server and Windows Server 2008 with Hyper-V Windows Server ® 2003 Service Pack 1 Windows Server ® 2008 Windows ® XP Professional Service Pack 2 Windows Vista ® Business or higher

8 DPM 2 DPM 4 DR

9 DPM to DPM for DR dpm2dpm4dr All data protected Sync / 15min File RPO = 2hrs (12d) App RP = 512 days with 15m RP’s Important Data Sync / 4 hours File RPO = daily (63d) App RP = 512 weeks with 15m RP’s

10 DPM to DPM for DR dpm2dpm4dr FS1 \ data (share) AccountingdB(SQLdb) Mailboxes(ExchSG) FS2 E:\team (directory) DPM FS1_data (share) SQL25\AccountingdB (sql) EX23\SG1\Mailboxes (exchange) FS2_E:\team\ (directory) DPM-DR FS1_data (share) SQL25\AccountingdB (sql) EX23\SG1\Mailboxes (exchange) FS2_E:\team\ (directory)

11 DPM to DPM for DR dpm2dpm4dr FS1 \ data (share) AccountingdB(SQLdb) Mailboxes(ExchSG) FS2 E:\team (directory) DPM FS1_data (share) SQL25\AccountingdB (sql) EX23\SG1\Mailboxes (exchange) FS2_E:\team\ (directory) DPM-DR FS1_data (share) SQL25\AccountingdB (sql) EX23\SG1\Mailboxes (exchange) FS2_E:\team\ (directory) Offsite Tape Backup

12 DPM to DPM for DR dpm2dpm4dr FS1 \ data (share) AccountingdB(SQLdb) Mailboxes(ExchSG) FS2 E:\team (directory) DPM-DR FS1_data (share) SQL25\AccountingdB (sql) EX23\SG1\Mailboxes (exchange) FS2_E:\team\ (directory)

13 Mirrored Data Center Iron Mountain CloudRecovery™ Exclusively for DPM Active Directory ® System State file shares and directories Data Center Data available for recovery Iron Mountain Data Center DPM 2007 sp1 Online Snapshots (up to 512) Disk-basedRecovery Tape-basedBackupRetention Up to Every 15 minutes Offline tape

14 Iron Mountain CloudRecovery™ Exclusively for DPM

15 DPM Management Shell

16 Feature details 100% of following UI have cmdlets Protection Recovery Disk and Library Management CLI only scenarios Configuring Backup LAN Disconnected Protection Agent install Configuring Maintenance & Consistency jobs Disaster Recovery Switch protection

17 Screenshot

18 Scenarios and Sample Scripts blogs.technet.com/DPM

19 Modify-PG setting across all DPM Scenario Admin manages 30 DPM servers Needs to change retention range etc. in all PG Today Manually TS into 30 DPM Servers Open DPM UI Run through Modify-PG in each Close UI and disconnect $DPM = import-csv DPMserverList.csv foreach $DPM { Connect-DPMServer $_ $PG= Get-PG foreach $PG { Get-ModifiableProtectionGroup $_ | Set-PolicyObjective –shortterm – Retentionrange 10 | Set-ProtectionGroup } Disconnect-DPMServer }

20 Fix Replica Invalid problem Scenario Operator gets alert on replica invalid in System Center Operations Manager Need to run consistency check on datasource Today Manually TS ‘the’ DPM Server Open DPM UI Go to alert and click on recommended action Close UI and disconnect With CLI, for an operator (cc –DPMServer –PS –DS) Connect-DPMServer –serverName $arg[0] $PG = Get-ProtectionGroup foreach $PG { $DS = Get-Datasource foreach $DS { if(($_.PSName –eq arg[1]) && ($_.DSName –eq arg[2])) {$myDS = $_} } } Cck $myDS #another module that runs CC Disconnect-DPMServer

21 Protection: Other Scenarios Add new servers to existing PG Changing Disk allocation MSIT most common alert Find the DPM server protecting a PS PS Admin wants recovery, Admin finds DPM server

22 Simple Recovery for operators Scenario Operator gets ticket for recovery Today Manually find which DPM server is protecting production server from an excel sheet Manually TermSrv into DPM Server Open DPM UI Go to Recovery wizard & recover Close UI and disconnect With CLI, for an operator (recover –PS –DS) Connect-DPMServer –serverName $arg[0] $PG = Get-ProtectionGroup foreach $PG { $DS = Get-DS foreach $DS { if(($_.PSName –eq arg[1]) && ($_.DSName –eq arg[2])) {$myDS = $_} } } Recover.psh $myDS Disconnect-DPMServer

23 Recovery: Other Scenarios EUR (for apps, web-based etc.)

24 Library/Drive Status and Inventory Scenario Admin wants to know status of libraries attached to all 30 DPM Servers Also run inventory on all unknown tape Today Manually TS into each DPM Server Open DPM UI Go to LMUI and update Excel with Library/Drive status Select all unknown media in library and do inventory Close UI and disconnect With CLI, for an operator get-librarystatus.psh  status.csv StartInventory.psh Get-Library | export-csv status.csv $Tape = Get-Library | Get-tape Foreach $Tape { if ($_.State –eq ‘Unknown’) { Inventory-Tape $_} Start-DPMLibraryInventory $Tape -DetailedInventory }

25 Library & Tape: Other scenarios Finding the tape Tape with is needed for recovery Finding all tapes for offsite or that are decommissioned Web based status of all Library and Drives in an org

26 Other Scenarios Simple dashboards for showing status for all DPM servers Datacenters Web-based protection status Web-based DPM Management (ISV) Break-fix from MOM (limited)

27 Other Resources Rich help in Command line itself with examples Sample scripts and explanatory documents getting posted online DPM newsgroup for community support Sample scripts on blogs.technet.com/DPM

28 Scripting

29 Scripting Overview DPM provides support for backing up custom applications using scripts Pre-backup script Post-backup script For each custom data source on the PS a pair of pre/post scripts can be provisioned DPM runs scripts using a local account Scripts should have Read & Execute permissions for Admin and local accounts only

30 Configuring Scripting ScriptingConfig.xml ”Path\Script” parameters "Path\Script” parameters 30 (Located in “\Program Files\Microsoft DPM\Scripting” on production server being protected) Repeat the DataSourceScriptConfig section for each custom data source

31 Configuring Scripting (Located in “\Program Files\Microsoft DPM\Scripting” on production server being protected) ScriptingConfig.xml ”AppShutdown.bat” parameters “AppRestart.bat” parameters 30 Resume - Restart - Undo Virtual Machine Hibernate Database Dump Application Service Stop Virtual Machine Hibernate Database Dump Application Service Stop

32 Microsoft Operations Manager 2005 (MOM) – Management Pack

33 The State View 1 2

34 Alerts View

35 State View of PS 1

36 Backup Failure Alert

37 Performance Graphs

38 Customizable Alerts

39 System Center Operations Manager 2007 – Management Pack

40

41 DPM Agent Two binary packages = x86 or x64 No differentiation between Enterprise/Applications and Standard/File Licensed when data protection configured E vs. S based on what is protected Application data protected = Enterprise DPML counted Files (only) protected = Standard DPML counted Agent can be deployed with SCCM

42 Connect Agent to DPM Server Actual PowerShell™ script Attach-ProductionServer.ps1 Attach-ProductionServer.ps1 $DPM -> DPM Server Name $PS -> Production Server Name $User, $Pwd, $Domain -> Credentials for associating agent with a DPM Server (admin) Attach-ProductionServer.ps1 –DPMServerName $DPM –PSName $PS –Username $User – Password $Pwd –domain $Domain Detailed blog entry on disconnected agent install scenarios at: http://blogs.technet.com/DPM

43 System Recovery Tool (SRT) Bare Metal Restore

44 Overview DPM System Recovery Tool* is used to: Protect servers from Hard-disks or other hardware failure (Bare Metal Recovery) System becomes unbootable Rollback recently applied patches Restoring disk layouts (for NTFS) for MBR disks Backup/restore system volume & other critical volumes * For protecting data use DPM 2007

45 DPM DPM 2007 Continuous Data Protection (CDP) for Windows application and file servers Continuous Data Protection (CDP) for Windows application and file servers Rapid and reliable recovery from disk instead of tape Rapid and reliable recovery from disk instead of tape Advanced technology for enterprises of all sizes Advanced technology for enterprises of all sizes Active Directory ® System State file shares and directories Up to Every 15 minutes with integrated Disk & Tape DPM 2007

46 DPM & DPM-SRT DPM System Recovery Tool - SRT Centralized Backup of Disk Layout, System Volume and other Critical volumes Centralized Backup of Disk Layout, System Volume and other Critical volumes Protects Window 2003 Servers or XP workstations Protects Window 2003 Servers or XP workstations Recovery uses customized ISO image that can be burnt to a CD Recovery uses customized ISO image that can be burnt to a CD Uses “Single Instancing” technology – thereby drastically reducing the storage requirements Uses “Single Instancing” technology – thereby drastically reducing the storage requirements Daily or Weekly DPM SRT Server Can run on DPM Server or separate platform with integrated Disk & Tape DPM 2007

47 DPM & DPM-SRT SRT Hashed 1MB file chunks within D:\RPstore (NTFS directory) DPM Native NTFS files, dB’s, SG’s, VHD’s, etc. VSS Shadow Copies DPM SRT Server Can run on DPM Server or separate platform with integrated Disk & Tape DPM 2007

48 DPM & DPM-SRT Ready for Backup Windows XP Get File List perfmon.exeperfmon.exe win32.dllwin32.dll xcopy.exexcopy.exe File List File List SERVER-A (plus meta data) -perfmon.exe -win32.dll -xcopy.exe Windows Server 2003 FS1 DPM SRT Server

49 DPM & DPM-SRT Windows Server 2003 SERVER-A File 1MB chunks SERVER-A (plus meta data) -perfmon.exe -win32.dll -xcopy.exe -Meta data includes -Chunk information (1MB) -Chunk Offsets in the file perfmon.exe 11442233 win32.dll 55886677 xcopy.exe 99121210101111 Copies chunks over one file at a time 114422335588667799121210101111 Copy chunks Backup Complete 11442233 55886677 99121210101111 DPM SRT Server

50 DPM & DPM-SRT Windows Server 2003 SERVER-B Ready for Backup SERVER-A (plus meta data) -perfmon.exe -win32.dll -xcopy.exe perfmon.exeperfmon.exe win32.dllwin32.dll xcopy.exexcopy.exe cmd.execmd.exe 11442233 55886677 99121210101111 Get File List SERVER-B (plus meta data) -perfmon.exe -win32.dll -xcopy.exe -cmd.exe File List File List Chunk unique items Chunk unique items 131314141515 cmd.exe -cmd.exe 151513131414 131315151414 DPM SRT Server

51 DPM & DPM-SRT Windows Server 2003 SERVER-B Backup Complete Backup Complete Windows Server 2003 SERVER-A SERVER-A (plus meta data) -perfmon.exe -win32.dll -xcopy.exe 151513131414 Next Backup – new files? xcopy.exe (patch) 99121210101616 1616 New chunks / new files New chunks / new files Backup Complete Backup Complete Windows Server 2003 SERVER-C Windows Server 2003 SERVER-D Windows Server 2003 SERVER-E Windows Server 2003 SERVER-F Windows Server 2003 SQL Server 2005 A Windows Server 2003 SQL Server 2005 B Windows Server 2003 SQL Server 2005 C Windows Server 2003 SQL Server 2005 D Windows Server 2003 R2 SQL Server 2008 A Windows Server 2003 R2 SQL Server 2008 B Windows Server 2003 R2 SQL Server 2008 C Windows Server 2003 R2 SQL Server 2008 D Windows Server 2003 R2 Exchange 2007 A Windows Server 2003 R2 Exchange 2007 B Windows Server 2003 R2 Exchange 2007 C Windows Server 2003 R2 Exchange 2007 D EACH NEW SERVER -Registry & settings -Application binaries DPM SRT Server 11442233 55886677 99121210101111 SERVER-B (plus meta data) -perfmon.exe -win32.dll -xcopy.exe -cmd.exe

52 System Recovery Tool … for Bare Metal Recovery

53 Schedule Console Administration console for managing Recovery Point Schedules Recovery Points Recovery Sets It is a Microsoft Management Console (MMC) snap-in New Schedule Wizard is automatically launched if no existing schedules are found Set Properties Email Notification Aging older Recovery Points Performance

54 Schedule Console Schedules Node: Create new schedules Add/Remove computers from schedule View schedule status & last run time Recovery Sets Node: Create new Recovery Sets Drag & drop recovery sets to existing schedules View Recovery Sets Recovery Points Node: Displays Recovery Points available for rollback Unlock/Lock Recovery Points

55 System Recovery Tool … for Bare Metal Recovery

56 Recovery Center Launch it from the Desktop shortcut OR by right-clicking on a desired schedule Rollback computers to a previous state Locked computers OR Unbootable computers Access to various reports Also allows you to launch the Boot Client Wizard

57 Recovery Center

58 Boot Client Wizard Allows users to create an ISO image Special drivers for Mass Storage Controllers & Network Controllers can be added to the image ISO image can be used to boot Production Servers (PS) that are unbootable Burn to ISO to media OR Mount it remotely To begin recovery – PS should be booted using Boot Client and in waiting mode

59 Boot Client – Start up

60 Boot Client – Waiting

61 Restoring a Whole Server 11442233 55886677 99121210101111 1313161614141515 1717202018181919 Image restore Apps/OS from days ago Image restore Apps/OS from days ago Data restore 15 minutes ago or less Data restore 15 minutes ago or less DPM 2007 with integrated Disk & Tape Windows Server 2003 SQL Server 2005 OS Apps Data DPM SRT Server

62 Licensing DPM SRT SRT is an add-on CD in the DPM 2007 box Not sold separately Separate eval also available SRT Server included with DPM Server SRT Agent included with Enterprise DPML

63 SRT Information TechNet Webcast – December 2007 “Advanced Features of DPM 2007”

64 Resources/Tools for DPM Web site www.microsoft.com/DPM blogs.technet.com/DPM Info DPM 2007 overview datasheets and webcast Datasheets, technical white papers and on-demand webcasts: How to Protect SQL Server with DPM 2007 How to Protect Microsoft Exchange with DPM 2007 How to Protect Virtualization Servers with DPM 2007 How to Protect SharePoint Server with DPM 2007 TechNet virtual labs - for hands-on learning with DPM 2007 SP1 E-mail dpmINFO@microsoft.com

65 Related Content MGT204 Technical Introduction to Microsoft System Center Data Protection Manager 2007 with SP1 MGT02-INT - How to Protect SharePoint with Microsoft System Center Data Protection Manager 2007 SP1 MGT18-HOL - Technical Introduction to Microsoft System Center Data Protection Manager 2007 MGT316 - Protecting Applications with Microsoft System Center Data Protection Manager 2007 with SP1 Required Slide Speakers, please list the Breakout Sessions, TLC Interactive Theaters and Labs that are related to your session. Required Slide Speakers, please list the Breakout Sessions, TLC Interactive Theaters and Labs that are related to your session. MGT401 - MGT401 - Advanced Capabilities of Microsoft System Center Data Protection Manager 2007 with SP1

66 Slide for Showing Software Code Use this layout to show software code The font is Consolas, a monospace font The slide doesn’t use bullets but levels can be indented using the “Increase List Level” icon on the Home menu To use straight quotes " instead of smart quotes ”, do this: 1. Click on the Office Button in the upper left corner 2. At the bottom of the menu, choose PowerPoint Options 3. From the left pane, select Proofing 4. Click on the AutoCorrect Options button 5. Select the AutoFormat As You Type tab, and deselect “Straight quotes” with “smart quotes”. Then Click OK.

67 jbuff@microsoft.com http://JasonBuffington.com

68 www.microsoft.com/teched Sessions On-Demand & Community http://microsoft.com/technet Resources for IT Professionals http://microsoft.com/msdn Resources for Developers www.microsoft.com/learning Microsoft Certification and Training Resources www.microsoft.com/learning Microsoft Certification & Training Resources Resources Required Slide Speakers, TechEd 2009 is not producing a DVD. Please announce that attendees can access session recordings at TechEd Online. Required Slide Speakers, TechEd 2009 is not producing a DVD. Please announce that attendees can access session recordings at TechEd Online.

69 Complete an evaluation on CommNet and enter to win! Required Slide

70 © 2009 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION. Required Slide


Download ppt "Jason Buffington Senior Technical Product Manager Microsoft Corporation Session Code: MGT401"

Similar presentations


Ads by Google