Entradas

Mostrando las entradas etiquetadas como Backup

Backup Hyper-V Virtual Machines with Pass-Through Disks

Imagen
 Thanks to: https://www.doitfixit.com/ We cannot backup Hyper-V Virtual Machines with pass-through virtual disks due to Hyper-V checkpoints limitation. Backup software will stop processing the backup job with “Processing VMs with pass-through disks is not supported” or similar error. To fix this issue (We are going to backup the Virtual Machine without pass-through disks) we can use pre/post scripts option in backup softwares. What we do here is when the backup starts we remove the pass-through disks and once the backup job is completed we re-attach the disks to the virtual machine. Pre-Script: Remove-VMHardDiskDrive -VMName  <VirtualMachineName>  -Passthru -ControllerType SCSI -ControllerNumber  <ID>  -ControllerLocation  <ID> Eg:  Remove-VMHardDiskDrive -VMName VM01 -Passthru -ControllerType SCSI -ControllerNumber 0 -ControllerLocation 0 Post-Script: Add-VMHardDiskDrive -VMName  <VirtualMachineName>  -Controller...

Solve Error Protection on SQL Server with DPM

Imagen
Thank to: https://www.itprotoday.com/ Q: Why am I receiving an error when trying to protect a SQL Server 2012 server using System Center 2012 Data Protection Manager? A:  If you have performed a fresh SQL Server installation and are trying to protect it with System Center 2012 Data Protection Manager (DPM), you might get an error in DPM that the server can't be protected. If you open Event Viewer and look in the Application log, you might see an error similar to the following: Log Name: DPM Alerts Source: DPM-EM Date: 5/6/2013 3:53:08 PM Event ID: 3170 Task Category: None Level: Error Keywords: Classic User: N/A Computer: savdaldpm12.savilltech.net Description: DPM could not start a recovery, consistency check, or initial replica creation job for SAVDALSQL01\AppController on savdalsql01.savilltech.net for following reason: (ID: 3170) The DPM job failed for SAVDALSQL01\AppController on savdalsql01.savilltech.net because the protection agent did not have sysadmin...

How can I force the removal of a DPM agent from DPM server?

Imagen
Thank to: https://www.itprotoday.com If you have an agent in DPM that you cannot remove from the console you can remove using the following: Launch the DPM Management Shell on the DPM Server Type the name of the remove script - remove-productionserver.ps1 Enter the name of the DPM server Enter the name of the machine to remove

Solve Error Protection on SQL Server with DPM

Imagen
Thank to: https://www.itprotoday.com/ Q: Why am I receiving an error when trying to protect a SQL Server 2012 server using System Center 2012 Data Protection Manager? A:  If you have performed a fresh SQL Server installation and are trying to protect it with System Center 2012 Data Protection Manager (DPM), you might get an error in DPM that the server can't be protected. If you open Event Viewer and look in the Application log, you might see an error similar to the following: Log Name: DPM Alerts Source: DPM-EM Date: 5/6/2013 3:53:08 PM Event ID: 3170 Task Category: None Level: Error Keywords: Classic User: N/A Computer: savdaldpm12.savilltech.net Description: DPM could not start a recovery, consistency check, or initial replica creation job for SAVDALSQL01\AppController on savdalsql01.savilltech.net for following reason: (ID: 3170) The DPM job failed for SAVDALSQL01\AppController on savdalsql01.savilltech.net because the protection agent did not have sysadmin ...

Script for Schedule Veeam Backup Free Edition

Imagen
Our Veeam Backup Free Edition has been the most popular free Veeam tool, mostly thanks to its VeeamZIP functionality: ability to perform interactive full backups of unlimited amount of VMs. However, VeeamZIP has always had one small yet irritating limitation – the inability to schedule performing regular backups. Indeed, due to the fact that VeeamZIP can only be triggered interactively, there is simply no means in UI to schedule it like regular backup jobs. If you have been down this path, you will be happy to know that as of Update 2, this is no longer the case! In areas like the Veeam forums, our engagement on Twitter and other areas; we have recognized the concern and decided to address it by making Start-VBRZip PowerShell cmdlet available in Free Edition. 4-April 2016 Note: Update your PowerShell to version 3.0 at least prior to using this script, as we’ve discovered number of odd issues while working with PowerShell 2.0. How it works As noted earlier, the main functionality...

Implementing Virtualization Software Hyper-V Backup and Recovery with the Windows Server Backup (WSB)

Imagen
Thank to: http://www.msserverpro.com/i The Windows Server Backup (WSB) is the built-in feature in Windows Server 2012 and is not an enterprise –wise backup solution. The WSB supports backing up virtual machines on stand-alone hosts and clustered hosts with CSVs. With the improvements in the Windows Server 2012, administrators can select backup and restore virtual machines (VMs) on the same Hyper-V Server. For medium or enterprise organization, Data Protection Manger 2012 R2 is the perfect solution for centralized protection of virtual machines and data. There are also many numbers of third parties backup solutions for Hyper-V. Here, you will use the Windows Server Backup (WSB) feature to backup and restore Virtual machines. The Windows Server Backup (WSB) feature is not installed on a server by default, it must be enabled. There are two ways to enable Windows Server Backup (WSB): From Server Manager Open Server Manager Open the  Manage  menu and choose  Add ...