Questions tagged [azure-backup]

12 questions
2
votes
2 answers

Configure Azure file share backup with ARM template

I was trying to configure Azure file share backup using ARM template deployment. Below is the template I'm trying to deploy. First I create a backup policy then trying to configure backup for the file share. The question is, to the template I have…
Lakal Malimage
  • 466
  • 1
  • 4
  • 10
1
vote
1 answer

Azure Backup Vault: UserErrorBackupUserAuthFailed on PostgreSQL database

I created a web application on Azure consisting of a Virtual Machine and a PostgreSQL 10 database. I want to configure the Azure "Backup vault" service to periodically perform a database backup. So, I created the "Backup vault" service and the…
El_Merendero
  • 111
  • 2
1
vote
0 answers

Will deploying MABS on Azure to back up on-prem go via Azure?

I would like to back up some on-prem system (SRV1) using Microsoft Azure Backup Server (MABS1), but I would like to host the MABS1 server itself on Azure as a VM and use an on-premises storage for cache/scratch (NAS1). I want to backup for Bare…
Konrads
  • 860
  • 2
  • 20
  • 38
1
vote
1 answer

Azure Backup Recovery Slow

I am currently restoring from the Azure Backup cloud as a mounted drive using the Azure Backup Utility. I am copying files from the mounted drive to the local drive using robocopy as suggested by Microsoft. The recovery speed is extremely slow.…
1
vote
0 answers

Azure "Last backup status" diverging from latest "Restore point"

Azure's Virtual Machine "Backups" blade shows both the "Last backup status" at the top and a list of "Restore points". When the "Last backup status" diverges significantly from the most recent Restore Point, what does that indicate? I.e., should I…
mpderbec
  • 111
  • 2
1
vote
1 answer

Can't identify where SQL backups are being initiated from

A little background on my skill: I am new to running SQL on Azure and, although I've done a bit of development on SQL Server, I would still consider myself a novice with SQL Server as well. We recently deployed a Windows VM in Azure that is running…
Chris76786777
  • 969
  • 4
  • 20
  • 35
0
votes
0 answers

Automated Backup for SQL VMs "Key not valid for use in specified state."

In Azure, when enabling Automated backups for SQL virtual machine (MS SQL in a VM), the operation fails. Similar errors occur with Azure Backup for SQL VMs. The Azure Portal reports: { "status": "Failed", "error": { "code":…
Fowl
  • 396
  • 1
  • 4
  • 21
0
votes
0 answers

Windows File Server 2019 backup to Azure with NTFS permissions

We are running a windows server 2019 with File and storage services. We only use this as a file server with NTFS permissions. My backup program doesn't allow dynamic disks to be backed up and all of our file partitions are dynamic disks. So I need…
Vdub
  • 148
  • 1
  • 8
0
votes
1 answer

How to get access to Azure VM image created in one azure account on another?

We have created a specialized VM image in Azure and shared it in shared image gallery in one of the azure accounts our organization has(ex: userA@company.com). Question is, how can this image be made available on another azure account under the same…
0
votes
1 answer

I don't see my local backups in Azure Backup center

I'm evaluating Azure backup for on premise computers. Scenario My scenario is simple : I want to backup the computer of my 50 users to the cloud. I want to backup 1 or 2 folders on each computer Each user should be able to restore his own computer…
0
votes
1 answer

Keeping Azure MARS backup after server deleted

An Azure Windows file server was backing up its files using the MARS agent into the recovery services vault and is listed as a protected server (see below). This server has been superseded but before I delete it, I want to check that the MARS backup…
Rob Nicholson
  • 1,678
  • 8
  • 27
  • 53
0
votes
1 answer

Azure VM off-site backups via CLI

I'm currently backing up Azure VMs via Azure CLI: create resource group: az group create -n backup-resource-group -l uksouth create recovery services vault: az backup vault create --resource-group backup-resource-group --name backup --location…