Quantcast
Channel: BizTalkGurus
Viewing all articles
Browse latest Browse all 2977

Blog Post: Azure: Getting started with Azure Backup Services

$
0
0

image

Recently Microsoft added Backup Services (Preview) in which you can invoke the cloud as part of your backup strategy, whether it be offsite secondaries etc.

You may have heard of Microsoft’s StorSimple which involved dropping a 2RU or 4RU Hardware device into a customer’s rack in a Datacenter somewhere which is no easy feat.

The reason why I’m liking the Azure Backup Services approach is that it’s a software based solution.

Storage costs for Backups are cheaper and this is a feasible approach for backups.

The other cool thing is that – if I need fast access to my backups in the cloud, then I can spin up a ‘configured’ VM in Azure (access to the same Backup Vault) and access the backups. No need to copy them down on premise first.

 

Let’s get Cracking

The elements that make this Azure Backup Services work are:

1. Azure Recovery Services Backup Services– with a Backup Vault created.

2. On Premise (or anywhere else for that matter) Server with the Backup Services Agent installed (currently Win2012, Win2008R2 are targeted platforms for the Agent).
(Currently the BackupServices APIs are only planned to be used from these Agents and not our own code….yet!)

3. A management certificate:

1. X509, Pub/Private keys installed in the local machine certificate store in the OnPrem Server.

2. Public Key (*.CER file) uploaded to Azure Backup Services (this is different to the Subscription Certificates you may already have up in Azure)

The certificate can be self signed and must have: 2048 (or greater) key length, expire within 3 years.
(if your cert fails these requirements it will either fail to upload, or fail to be recognised – we’re dealing with Preview here folks)

 

1. Creating the Vault

Login to the Azure Portal (activate the Backup Services Preview feature if you haven’t done so already) and select Recovery Services
image

 

- Add a new Backup Vault with your details. It’s point a click stuff here, no thinking yet.

 

2. Create the Management Certificate for Backup Services

There’s a few different ways to do this, makecert.exe is the easiest way I find as follows:

(run from an elevated cmd prompt if required)

-------------------------------------

C:\>makecert
Error: Please either specify the outputCertificateFile or -ss option
Usage: MakeCert [ basic|extended options] [outputCertificateFile]
Basic Options
-sk  <keyName>      Subject's key container name; To be created if not present
-pe                 Mark generated private key as exportable
-ss  <store>        Subject's certificate store name that stores the output
                     certificate
-sr  <location>     Subject's certificate store location.
                        <CurrentUser|LocalMachine>.  Default to 'CurrentUser'
-#   <number>       Serial Number from 1 to 2^31-1.  Default to be unique
-$   <authority>    The signing authority of the certificate
                        <individual|commercial>
-n   <X509name>     Certificate subject X500 name (eg: CN=Fred Dews)
-?                  Return a list of basic options
-!                  Return a list of extended options

C:\>makecert.exe -r -pe -n CN=MicksBreezeAzureBackups -ss my -sr localmachine -eku 1.3.6.1.5.5.7.3.2  -e 12/31/2015 -len 2048 "MicksBreezeAzureBackups.cer"

--------------------------------------------------------

* you should be able to see this Cert in the MachineCertStore on the local machine as follows: *

image

 

The *.cer file will be on the local file system ready for uploading Smile

 

3. Uploading the Certificate (*.CER) file to the Azure Portal

From the Azure Portal –> Recovery Services –> Upload Management Certificate

image
If all goes well, you’ll have success Smile
image

 

You should be able to see your certificate details in the Backup Services – click on your newly created empty BackupVault.

image

 

Now we’re ready to get onto the Server Side

 

3. Configuring and Registering the OnPremise Server to the Backup Vault.

3.1 Download the Agent from Backup Services

Click on the Download Agent Link from within Backup Services and choose your selection:

image

Here I selected the first option – “Agent for Windows Server 2012 and System Center 2012 SP1..”

Download the Agent (approx 17MB) and install.

This should go smoothly.

3.2 Registering the Server

Launch the Agent (if havent done so already) after the above installation completes.

image
(mine is empty)

3.2.2 Click on Register Server

image

(Configure a Proxy if you need to, this is for HTTP/HTTPs traffic)

Your certificate should come up in the list that you created earlier – if it doesnt ensure that both the Private + Public keys are installed AND the Cert is in the Local Machine Store. Then rerun this step.

Select the Vault details as follows in the Agent

image

(I’ve hidden my subscription ID here)

You’re 2 worlds are almost connected now, we have the Vault + the Server just about done.

Click Next to move onto the Encryption Settings

image

 

Select a Passphrase and bear in mind that each new Server you add which wants to restore/read the backup information from another server, will need the same Passphrase.

 

Click the magic button REGISTER Smile
image

 

This is also reflected on the Backup Services Portal under Servers as follows:

image


 

 

4. Configuring Backing – using the Windows Azure Backup & Throttling

(this is very simple and similar to Windows Backup)

image

 

What files are we backing up – click on Schedule Backup

I’ve selected a small folder on the System for the purpose of the demo

image

 

Select a Time – Currently limited to a max of 3 times a day per Server.

image

The COOOOOL THING is click on Change Properties – and here we can configure Throttling.

- complete the Wizard to create your first backup schedule – well done!

 

You’ll now notice the Windows Azure Backup shell has a Backup Now option on the right hand side.

I selected this and ran the Backup Now ‘wizard’ in which I could also specify Throttling for this backup.

image

 

At this stage you can also go back to the Backup Services Portal and see an entry in the Protected Items there as well.

 

5. Powershell Commands – it goes without saying that there’s a ton of powershell commands to script alot of what we did above.

Digging into PowerShell we find that the commands fall under ‘OnlineBackup’ as follows – notice MSOnlineBackup

image

 

image

 

If I simply run a Get-OBJob command we get back some reasonable info around data transferred etc.

image

 

Happy Backuping!!!! Great new Service.


Blog Post by: Mick Badran

Viewing all articles
Browse latest Browse all 2977

Trending Articles