Disclaimer: This is not officially supported by VMware, use at your own risk.
vCenter Simulator is an internal tool developed by two VMware engineers: Zhelong Pan and Kinshuk Govil which allows you to quickly simulate thousands of virtual machines all running in memory while requiring only a minimal amount resources within the VCSA (2vcpu & 8GB memory - default configuration). Building such a tool is definitely not a trivia task, but it is also not the first time we have seen something like this. Awhile back there was project called simDK created by Andrew Kutz that did something similar but only supported reading information from vCenter Server, it did not support any actual operations. vcsim is much more advanced and the really cool thing about vcsim is that even though the inventory is simulated, it actually supports some basic vSphere inventory operations such as create/destroy and power operations. It also supports a hybrid configuration where you can mix both simulated and actual ESXi hosts and virtual machines since it is an actual vCenter Server.
Before we dive into using vcsim, I wanted to go through a few use cases where a tool such as this would be useful:
- Exploring and learning about the vSphere API and the basic inventory hierarchy of vSphere objects
- Environment to develop and create various inventory reporting scripts (vCLI, PowerCLI, etc)
- Developing performance metric gathering tools
- Developing vSphere Web Client plugins and being able visualize large inventory of objects
To enable vcsim, you will need to add some configuration entries into the vpxd.cfg (vCenter Server configuration file) an example template of the configuration is provided in:
/etc/vmware-vpx/vcsim/model/vcsim.cfg.templateTo setup a basic vCenter Simulator, you should deploy a brand new VCSA (you can use an existing VCSA, but the VCDB could potentially get wiped) and go through the basic setup as you would normally. Next, you need to add the following lines at the end of /etc/vmware-vpx/vpxd.cfg between </vpxd> and </config>
Note: Notice the cleardb parameter is false in my example where as the template is set to true. This is very important because if you use the default of "true", you will not be able to view your vSphere inventory using the vSphere Web Client but only the vSphere C# Client as the Inventory Service DB is wiped.
Once you have added the configurations and saved the vpxd.cfg, you will need to restart the vCenter service by running the following command:
service vmware-vpxd restartNote: A restart of the vmware-vpxd service ONLY works the very FIRST time you add in the vcsim configurations. For any additional changes to the vcsim configuration files, a different method is required to reload the changes, else the vCenter service will fail to start. This is shown in detail further in the article.
Once the vCenter service has restarted, you should now be able to login using either the vSphere Web Client or the vSphere C# Client and you should see a default vSphere inventory that contains a Datacenter, Cluster, several ESXi hosts with Resource Pools along with some powered on and off virtual machines.
Here is a screenshot of logging into the vSphere Web Client:
Here is a screenshot logging into the vSphere C# Client:
You might notice that your inventory may not be as large as mines ... oh about 10,000 VM large :) Another cool thing about vcsim is that it has a configurable inventory that you can customize to fit whatever design you wish to have and this can be modified in /etc/vmware-vpx/vcsim/model/initInventory.cfg file. You can tweak the following in the configuration files:- Datacenter
- Hosts per Datacenter
- VM per Host
- Powered On VM per Host
- Cluster per Datacenter
- Host Per Cluster
- Resource Pool per Cluster
- VM per Resource Pool
- Powered On VM
- vCPU for a VM
- vMEM for a VM
service vmware-vpxd stopWhen you log back into your vCenter Server, you now should see the new inventory based on your configurations. In addition to inventory configuration, the vcsim template also points to three other configuration files which I encourage to explore further:
vpxd -b
service vmware-vpxd start
- vcsim/model/metricMetadata.cfg (simulated Performance Metrics, none by default)
- vcsim/model/vcModules.cfg (simulated VC modules such as DRS)
- vcsim/model/OperationDelay.cfg (operations latencies)
At this point, you are probably ready to start playing with vcsim and even though this is an internal tool, if you think this is something that is useful to have or have other use cases for, please leave a comment. You never know, this could be a VMware Fling one day if there is enough interest from the community.


Can this also simulate agents on ESXi hosts like vslad for simulating vCloud Director?
ReplyDeleteJake,
DeleteNo it can not.
Feature Request!
DeleteSo the VCSIM can generate perf data by modifying the: vcsim/model/metricMetadata.cfg file?
ReplyDeleteIf so, can vCops report on this data?
-Matt
I've not tried it, I encourage you to give it a try :)
DeleteThis comment has been removed by the author.
Deletehi, i tried this. Even though I can see the performance metrics like CPU usage and memory usage for a Virtual machine in the VI client i am not able to get these metrics when i query through Perl API. I get data for 3 metrics disk.unshared.kilobytes, disk.used.kilobytes and disk.provisioned.kilobytes. For Clusters its giving even more. But strangely none of these metrics are configured in the metricMetadata.cfg file.Metric collection setting for cluster is altogether absent. This leads me to think if vcenter services is actually reading this file.
DeleteDoes this allow for simulation of any network connectivity or shared storage allocations?
ReplyDeleteThings like joining the simulated VMs to different vSwitches (standard or distributed)
Using vMotion & svMotion with the simulated VMs
In general is this for playing with the day-to-day management of a large VM environment or for feeding fake performance data to external tools?
As the article mentions, there is a limited amount of inventory based operations: create/destroy VMs and Hosts and power ops for VMs. There is no simulation of any networks or storage (there is a single "simulated" datastore volume). I've mentioned a few use cases in the article already and would encourage you to give it a try.
DeleteAwesome post.
ReplyDeleteThis is simply put awesome!!! Great article William... Looking forward to be able to test vSphere's limits and not just hitting them in production. This is going to be implemented in your test environment...
ReplyDeleteis it possible use vcops, vin, vcloud, n1k etc with this ?
Hello,
ReplyDeleteI have clean Mware vCenter Server Appliance 5.1.0.5300 Build 947940
My /etc/vmware-vpx/vcsim/model/initInventory.cfg:
http://tny.cz/3c33047e
Some errors appears when I run service vmware-vpxd restart command.
Console errors: http://tny.cz/2019c6bb
What's wrong with my vCenter Server Simulator configuration?
Thanks.
If you take a look at the error logs, you can see that it points you to a miss-match in "initInventory" tag. It looks like you used a lower case "i" for starting inventory and upper case for the ending. The tag should be "initInventory"
DeleteThank you, William! works fine!
DeleteThis comment has been removed by the author.
DeleteWilliam, is vcsim configuration operates (works) only until applience restart? Should we recreate the database every time after reboot?
ReplyDeleteThat's correct
DeleteI think this is something useful with our business, I could do my research regarding this one to see if it will work with rfid inventory solutions app.
ReplyDeleteHello... Can this be used to simulate vMotions? Thanks... P.C.
ReplyDeleteHey, great post! I started playing with this and think its going to help me out tremendously with some testing activities I am on the hook for. Any idea on the metric metadata file. There is not a whole lot there to work with and curious if anyone has made any headway here?
ReplyDeleteHello William,
ReplyDeleteI have followed your post word-by-word. But, I could not simulate the vCenter. All that I see in the web client and c# client is only the vCenter Hostname. No simulated object. I am using evaluation version of VCSA 5.1. Should that matter?
Thanks
It's really an information full post. Thanks to share . This post has been removed my same mistaken thing . I think if you bring on your activities you will achieve much popularity.. At last.. thanks.
ReplyDeleteInformation visualization Low
Hello
ReplyDeleteI've installed a Windows 2008 R2 + Vcenter, but can't manage to setup this simulation mode. is it not possible or is it me? I'm not very skilled.
Thx