Posted On April 2, 2019

Question: Is VirtualBox Recommended for Production?

kimconnect 0 comments
blog.KimConnect.com >> Virtualization >> Question: Is VirtualBox Recommended for Production?

Answer: No

– It’s not supported for production environment:
– VirtualBox is not enterprise level: https://www.reddit.com/r/sysadmin/comments/4nhh36/anyone_using_virtualbox_for_production/?rdt=46447
– VMware is better:

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Take VM Snapshots

# takeVmSnapshot.ps1 $vmNames='Test-VM1','Cowabunga-VM4' $snapShotLabel="Snapshot $(get-date -Format yyyyMMddTHHmmss)" function takeVmSnapshot([string[]]$vmName,[string]$snapshotLabel){ $vmClusterNodes=Get-ClusterGroup|?{$_.GroupType -eq 'VirtualMachine'} foreach ($vm in…

Overview of Microsoft Azure Networking

Private connections into Azure are either via ExpressRoute (comparable to AWS DirectConnect) or VPN. The…

Fixing an Issue On Windows Server 2019 Hyper-V with Uneven Distribution of Available CPU Cores

Issue: When guest-VMs are being migrated between Hyper-V Hosts within a cluster, CPU core scheduling…