Skip to main content

ESXi 5 installation on Oracle VirtualBox

It's been possible to test ESX installation on VMware Workstation for some time, but there is an alternative solution now. ESXi 5 can be installed on Oracle VirtualBox https://www.virtualbox.org/ providing the right VM settings are chosen.

There is a caveat though. Only 32-bit guest OS can be hosted even on 64-bit hardware. During installation you are warned that 'Hardware Virtualization' is not ON despite this option being enabled in BIOS.

ESXi 5 requires at least 2 virtual processors, IO APIC option and 2048 MB of memory, SATA storage controller and one of Intel network adapters. 

If SCSI of SAS controller is chosen, you might get an error message like the one below
or no storage device will be shown.

If you get all the setting right, installation process should finish with the following message.

Now when installation is finished you can connect to your new ESXi host and start playing with  enterprise class virtualization technology. 

Comments

Popular posts from this blog

SQL Server Master Database Recovery

Let's imagine a situation when master database of one of your SQL Server instances is missing or gets corrupted and the instance fails to start with Application error log similar to the one below. If you have at lease one valid backup of master database, you are in a good position to recover your instance. In my example I'll be using SQL Server 2008 R2 on Windows Server 2008 R2, but the recovery process should also work for SQL Server 2005 and 2008 on Windows Server 2003 and 2008. On Windows Server 2008 and 2008 R2 always remember to open command prompt in administrative mode, otherwise some command will lack required permissions to work. The first thing you need to do is rebuild master database (this process also rebuilds msdb and model databases, so make sure you've got valid backups). Use setup.exe from from either SQL Server's installation media or SQL Server local installation directory (\100\Setup Bootstrap\Release), which in my case is  C:\Program Files\M

Remote RPC access denied on Windows Server 2008

In one of my last assignment, I was asked to add two node SQL Server cluster to Spotlight for SQL Server Enterprise monitoring server. Normally it would be an easy task, but the cluster was hosted behind a firewall. All required ports were opened for communication with the monitoring server, and a local account with administrative permissions was  used for connection,  but remote access via RPC was denied. I had checked tens of websites suggesting various solutions before founding a working one. http://social.technet.microsoft.com/Forums/en-ZA/winserverManagement/thread/394cdf59-5238-4520-811f-fe0369b08e4e In Windows Server 2008 and 2008 R2 local users that are members of local administrators group, have their rights downgraded when connection from remote clients. The solution is to to add a registry key that stops your local administrator accounts from being downgraded.

Fixing Missing SSIS Performance Counters

On some occasions SQL Server performance counters either disappear or are not showing any values. There is a well documented method for unloading, and reloading counters for SQL Database Engine, and SQL Agent in the link below. http://www.travisgan.com/2013/05/missing-sql-performance-counters.html For SSIS please follow step below: Go to SSIS binn directory CD "C:\Program Files\Microsoft SQL Server\110\DTS\Binn" C: Unload DTS Server, and DTS Pipeline counters unlodctr MsDtsServer110 unlodctr DTSPipeline110 Reload the counters lodctr perf-MsDtsServer110DTSSVCPERF.INI lodctr perf-DTSPipeline110DTSPERF.INI For newer SQL versions just swap 110 for the version you are working on