Listen to this Post

In case you missed it: Scale Computing has teamed up with Veeam Software to make data protection even easier and more powerful! You can now use Veeamās trusted backup and recovery tools with the Scale Computing platform.
You Should Know:
This partnership integrates Veeamās robust backup solutions with Scale Computingās hyperconverged infrastructure (HCI), simplifying disaster recovery and data management. Below are key technical details, commands, and best practices to leverage this integration effectively.
- Setting Up Veeam Backup & Replication with Scale Computing
To configure Veeam for Scale Computing, follow these steps:
1. Install Veeam Backup & Replication:
Download Veeam (Windows) Invoke-WebRequest -Uri "https://www.veeam.com/downloads/" -OutFile "VeeamSetup.exe" Start-Process -FilePath "VeeamSetup.exe" -ArgumentList "/silent" -Wait
2. Add Scale Computing as a Backup Repository:
Linux command to verify storage connectivity ping scale-computing-node nslookup scale-computing-cluster
3. Configure Backup Jobs:
- Use Veeamās GUI or PowerShell for automation:
Add-VBRViServer -Name "scale-cluster.domain" -User "admin" -Password "securepass" New-VBRJob -Name "Scale_HCI_Backup" -Description "Daily Backup" -BackupRepository "Scale_Repo"
- Automating Backups with Cron (Linux) or Task Scheduler (Windows)
– Linux (Cron Job for Pre/Post Scripts):
Edit crontab crontab -e Add a daily backup trigger 0 2 /opt/veeam/backup_script.sh
- Windows (Task Scheduler):
Create a scheduled task Register-ScheduledTask -TaskName "Veeam_Scale_Backup" -Trigger (New-ScheduledTaskTrigger -Daily -At 2AM) -Action (New-ScheduledTaskAction -Execute "C:\Veeam\BackupScript.ps1")
3. Monitoring and Logging
- Check Veeam Logs:
tail -f /var/log/veeam/backup.log
- Verify Scale Computing Cluster Health:
ssh admin@scale-cluster "hciview --status"
4. Disaster Recovery Commands
- Restore via Veeam CLI:
Start-VBRRestore -Job "Scale_HCI_Backup" -Point Latest -Target "scale-cluster.domain"
- Scale Computing Node Recovery:
scale-node --recover --from-backup /mnt/veeam/backup.vbk
What Undercode Say:
The Veeam-Scale Computing partnership streamlines enterprise-grade backups, but success depends on proper automation and monitoring. Key takeaways:
– Use PowerShell/Veeam CLI for large-scale deployments.
– Schedule log reviews to preempt failures.
– Test disaster recovery scripts regularly.
Expected Output:
- Automated daily backups.
- Verified restores via CLI/GUI.
- Centralized logging for compliance.
For further details, visit:
References:
Reported By: Abbie Hausfeld – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ā


