Now you’re less likely to miss what’s been brewing in our knowledge base with this weekly digest
Please, try again later.
This article is related to a new capability to migrate the configuration of a Windows-based Veeam Backup & Replication deployment to a Veeam Software Appliance. Due to the variability in how Veeam Backup & Replication can be used, configured, and deployed, and the complexity of migrating software configuration between platforms, this guide may not cover every possible limitation or consideration.
This article will be updated as more migrations occur and as customer feedback is received.
Before reviewing limitations or proceeding with the migration guidance, please complete the following mandatory preparation steps.
Pilot migration projects are currently being performed in close cooperation with Technical Support, Sales Engineers, and Product Management. If you are considering migrating from a Windows-based installation to the Veeam Software Appliance (VSA) to take advantage of all supported features, complete the steps below before continuing with this article.
To minimize downtime, this procedure recommends deploying the Veeam Software Appliance (VSA) first so that it is ready to receive the migration. Please closely review all system requirements for the VSA and take your time to ensure it is deployed with system resources appropriate for the environment.
Note: The Veeam Backup & Replication Web UI has limited functionality; therefore, we strongly recommend that you install the Windows-based Veeam Backup & Replication Console to access all Veeam Backup & Replication features of the Veeam Software Appliance.
PowerShell script to stop and disable services:
$services = @("Veeam AHV Service","Veeam AWS Service","Veeam Azure Service","Veeam Web Service","Veeam Backup Server RESTful API Service","Veeam Broker Service","Veeam CDP Coordinator Service","Veeam Cloud Connect Service","Veeam Data Analyzer Service","Veeam Backup Service","Veeam GCP Service","Veeam Kubernetes Service","Veeam KVM Service","Veeam PVE Service","Veeam SC HyperCore Service","Veeam Orchestrator Agent Service")
foreach ($service in $services) {
$svc = Get-Service -DisplayName $service -ErrorAction SilentlyContinue
if (-not $svc) { Write-Host "[$service] Not found." -ForegroundColor Yellow; continue }
if ($svc.Status -ne 'Stopped') {
Write-Host "[$service] Stopping..." -ForegroundColor Cyan
Stop-Service -Name $svc.ServiceName -Force -ErrorAction SilentlyContinue
$svc.WaitForStatus('Stopped', '00:02:00')
}
Set-Service -Name $svc.ServiceName -StartupType Disabled
Write-Host "[$service] Stopped and disabled." -ForegroundColor Green
}
Get-VBRProtectionGroup -ContainerType CSV
This section applies only to Standalone, non-managed, deployments of Enterprise Database Plug-ins (RMAN, HANA, SQL, DB2, SAP Oracle). After migration, those standalone Enterprise Plug-in deployments must be reconfigured in the following ways:
If this KB article did not resolve your issue or you need further assistance with Veeam software, please create a Veeam Support Case.
To submit feedback regarding this article, please click this link: Send Article Feedback
To report a typo on this page, highlight the typo with your mouse and press CTRL + Enter.
Your feedback has been received and will be reviewed.
Please, try again later.
Please try select less.
This form is only for KB Feedback/Suggestions, if you need help with the software open a support case
Your feedback has been received and will be reviewed.
Please, try again later.