In my opinion, the easiest way how to find out the ESX host version, is to log in to the service console and use the esxupdate command. The major version can be found in the file /etc/vmware-release. For example, it may contain:
VMware ESX Server 3So, the major version is 3.x. To determine minor version is a little complicated. Run this command from service console:
esxupdate queryAnd try to identify patches with the following prefixes from the end of command output (the last one is the right one):
- ESX - the minor version should be 0, so we have version 3.0.x
- ESX350 - the minor version is 5, the version is 3.5.0
- 3.5.0 - initial instalation of version 3.5.0
3.5.0-64607 16:25:29 05/27/08 ESX 3.0.x to 3.5.0-64607 upgradeIt remains to identify the update level. Use the same command as above and check the full patch name now:
3.5.0-64607 10:42:31 08/06/08 Full bundle of ESX 3.5.0-64607
- ESX350-Update01 - we have 3.5.0 Update 1
- ESX350-Update02 - we have 3.5.0 Update 2
ESX350-Update01 16:59:56 05/27/08 ESX Server 3.5.0 Update 1Do you know another way how to reach the version? Beside this, I have found this knowledge base article.
ESX350-Update02 10:42:38 08/06/08 ESX Server 3.5.0 Update 2
4 comments:
Another quick way to get the version of ESX, would be to run a:
# vmware -v
VMware ESX Server 3.0.1 build-32039
That's perfect! Dou you know any other useful usage of the command?
Find the version: vistual center, click on the host, over tabs, u can see the name of the host and the version. ex. xxx.ccc.com, VMware ESX server, 3.5.0. 64607
From the console, logged in as root:
esxupdate query | grep "ESX Update"
Post a Comment