vCenter Server Service does not start automaticaly
I had this issue with vCenter Server on my home lab.
Virtual Center starts before the SQL database it depends on. I found a solution in a KB on VMware’s website.
This article provides steps to prevent the race condition from occurring. VirtualCenter service does not start after reboot.
First I checked log files of vCenter here: C:\Windows\Temp\VPX
I suppose that VirtualCenter Server service can be started manually with no problems. This is my case….
You need to add a dependency to the VirtualCenter service so that it waits for SQL Express remedies this.
To create a service dependency:
01. Click Start > Run. Type services.msc and press Enter.
02. Locate the SQL instance for VirtualCenter. For example, SQL Server (SQLEXP_VIM).
03. Open the SQL Express instance and note the Service Name. For example, MSSQL$SQLEXP_VIM .
04. In the Run dialog, type Regedit.exe and press Enter. Browse to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\vpxd
05. Double-click the DependOnService key and add the Service name using the name identified in step 3.
06. Go back to the Services Panel and open the SQL Server properties.
07. On the Dependencies tab, verify the VMware VirtualCenter service is listed as depending on the SQL service instance.
Check also this Microsoft KB.
1 Comment
Leave a Reply
Other posts from Server Virtualization
- Create your own Provider Virtual Data Center
- Measure some perf benchs with VMark
- VMware partners with Symantec on ApplicationHA
- Andre Leibovici's Linked cloning storage calculator
- SIOC yes, but not in the SMB kit...
- Best practices KB on how-to install ESX 4.1 and vCenter
- Hyper-V and new linux integration tools
- How to Fix “Transaction log for database ‘VIM_VCDB’ is full” errors
- How to change from ACPI Multiprocessor HAL back to ACPI Uniprocessor HAL in Windows 2003
- AD Integration for ESXi 4.1
- vCenter converter with Hyper-V import
- Serial Port handling in ESXi 4.1
- Four memory optimization techniques available in vSphere 4.1
- Activating remote access via SSH in ESXi4.1
- vSphere Compatibility Matrixes
- 150 new features or enhancements in vSphere 4.1
- Personalized install of VMware tools
- VMware tools download from VMware Website
- How to change virtual SCSI controler
- Microsoft's patch for .NET breaks VI client connection






















Thank you. This fixed the problem I was having.