Thanks for the Question and using Microsoft Q&A
As we understand that, Workload Backup extension on your VM is unable to communicate with the Azure Backup service due to network connectivity issues. Here are some steps to troubleshoot and resolve the issue:
To fix the issue, you'll need to re-register your virtual machine (VM) with Azure Backup so it can reconnect properly. Here's how you can do that:
- Log into the Azure Portal
- Go to your Recovery Services Vault
- Find the Backup Infrastructure section – Inside this, look for Azure Workload Backup, which handles SQL backups on VMs.
- Locate your affected VM – You'll see a list of registered VMs. Find the one that's having the issue.
- Click on "Re-register"
- Wait for the process to complete – It might take a few minutes.
- Try enabling SQL backup again – Once the re-registration is done, retry setting up the backup and see if it works.
Ensure TLS 1.2 is Enabled :
Azure Backup requires TLS 1.2 for secure communication. To check if TLS 1.2 is enabled, run the following PowerShell command:
[Net.ServicePointManager]::SecurityProtocol
If TLS 1.2 is not listed, enable it by running:
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Validate Network Connectivity
Ensure that your VM can reach Azure Backup service endpoints by testing the connection:
Test-NetConnection -ComputerName [Azure Backup Service URL] -Port 443
Confirm that your firewall or Network Security Group (NSG) rules allow outbound traffic on port 443 (HTTPS).
I hope this information helps. Please do let us know if you have any further queries.