Azure VM 백업은 스냅샷을 만들고, 이 스냅샷을 백업 볼트로 전송한다.
스냅샷은 가상머신 I/O를 Freeze 하고, Snapshot이 완성되면, I/O를 다시 진행시키는 방식으로 진행된다. 그리고 백업 볼트로 전송을 하는데 시간이 대부분 소요되는데, 크기에 따라 몇시간이 소요될 수 있다.
[Windows]



net stop RdAgent
net stop WindowsAzureGuestAgent
net start RdAgent
net start WindowsAzureGuestAgent!
net stop COMSysApp
net start COMSysApp
https://learn.microsoft.com/ko-kr/troubleshoot/azure/virtual-machines/windows/windows-azure-guest-agent
https://learn.microsoft.com/ko-kr/azure/azure-monitor/agents/azure-monitor-agent-manage?tabs=azure-powershell
[Linux]

sudo systemctl restart waagent
/var/log/waagent.log
/var/log/azure/Microsoft.Azure.RecoveryServices.VMSnapshotLinux/*
[SnapshotThread]
fsfreeze: True
SafeFreezeWaitInSeconds = 60
이후 재시작
sudo systemctl restart waagent
https://learn.microsoft.com/ko-kr/troubleshoot/azure/virtual-machines/linux/linux-azure-guest-agent