Learn How To License Vcenter, ESXi and vSAN
Learn How To License Vcenter, ESXi and vSAN
SIGN IN
Save to My DOJO
Table of contents
I’ve written a number of posts on how to install ESXi, vCenter and similar products but if memory serves me right, I don’t recall explaining in
any detail how to apply license keys after you’re done installing. From a recently held conversation, I learned that licensing VMware products
can be a tad confusing to some.
In today’s post, I go through the process of licensing the most frequently deployed VMware products these being ESXi and vCenter Server
along with features such as vSAN. There are several options you can use to manage license keys; GUI, command line tools and PowerCLI.
Let’s have a look.
There are two ways to apply license keys on ESXi. You can either use the host client or run the vim-cmd shell command. The host must not
be managed by vCenter Server – hence the term standalone – when using these methods.
As always, navigate to https://<ESXi IP address> and log in as root. Click on Manage and select the Licensing tab.
Click on the Assign license button and type in the designated license key. Click on Check License to verify the key. If it is valid, press Assign
License once more to apply it.
https://www.altaro.com/vmware/license-vcenter-esxi-vsan/ 1/15
4/21/24, 4:23 AM Learn How to License vCenter, ESXi and vSAN
If for any reason you need to remove a license, you can do so by clicking on the Remove License button. Since there can only be one license
assigned at any time, the last one entered is picked up by default.
You first need to enable shell on ESXi using either the DCUI or the host client. Once you that, SSH to the ESXi host and log in as root. Run the
following command:
If the command is successful, the output will show which features have been unlocked following the key’s assignment along with product
expiry details (if applicable), the type of key applied as well as the number of instances supported (per physical processor).
https://www.altaro.com/vmware/license-vcenter-esxi-vsan/ 2/15
4/21/24, 4:23 AM Learn How to License vCenter, ESXi and vSAN
The output is piped into grep so that only the product key is listed. Removing will list all the information associated with the key as per the
previous screenshot.
The vSphere Web client is the recommended method to use when you’re licensing vCenter Server. This applies to both the Windows and
appliance versions. You will need to license vCenter itself and, optionally, any ESXi hosts it is managing. A separate license is required for
vCenter. If the managed ESXi hosts have already been licensed, you can simply stick with the currently assigned license when adding hosts to
vCenter Server as shown in Fig. 5. If on the other hand, the features unlocked by the current key do not suffice, you will need to replace the
current key with a new one that does.
Figure 5 – Selecting an existing license key when adding an ESXi host to vCenter
Adding license keys to vCenter is the first step. In general, you’ll have 2 keys, one for vCenter and a second one for the ESXi hypervisors.
After you load vSphere Web client, click on Licensing from the Home screen.
Select the Licenses tab on the Licenses screen and click on the green arrow button to add the new license keys.
https://www.altaro.com/vmware/license-vcenter-esxi-vsan/ 3/15
4/21/24, 4:23 AM Learn How to License vCenter, ESXi and vSAN
Enter every key on its own line. As can be seen in Fig.8, I’ve added 3 license keys for vCenter Server, ESXi Enterprise Plus and vSAN
Advanced. The keys are obfuscated for obvious reasons!
On the next screen, you can name the license keys. This makes it easier to identify which key is being assigned to what. This screen also
provides details about the product expiry and capacity relevant to each key.
Press Finish on the last screen (not shown) and then verify that the new keys have in fact been added. The new keys should be listed
alongside the previous ones.
https://www.altaro.com/vmware/license-vcenter-esxi-vsan/ 4/15
4/21/24, 4:23 AM Learn How to License vCenter, ESXi and vSAN
After the keys have been added, we can go ahead and use them to license the corresponding VMware products. The Products tab gives you
an overview of the products you can license, with all the license keys grouped accordingly. You can also view the features unlocked by the
currently assigned key for the specific product by right-clicking on the product name and selecting View Features.
To license a product, switch to the Assets tab. Under the 4 additional tabs – vCenter Server systems, Hosts, Clusters, and Solution – you will
find the respective products including one or more vCenter instances and managed ESXi hosts. The Clusters tab is there to license cluster-
centric features such as vSAN. The Solutions tab is instead used to license products such as NSX.
https://www.altaro.com/vmware/license-vcenter-esxi-vsan/ 5/15
4/21/24, 4:23 AM Learn How to License vCenter, ESXi and vSAN
To license vCenter Server, switch to the vCenter Server systems tab and right click on the vCenter Server name listed under the Asset column
selecting Assign License as you do.
Select the license key you wish to assign to vCenter Server and press OK. This is where the license names, previously mentioned, come in
handy.
Likewise, you can easily license one or multiple ESXi hosts by way of the Hosts tab. You can license hosts individually using different licenses
or, as is generally the case, simply select all the hosts (Ctrl-A) and enter a common license. To do this, just right-click on the selection made
and select Assign License. Again, select the required license from the list and press OK.
https://www.altaro.com/vmware/license-vcenter-esxi-vsan/ 6/15
4/21/24, 4:23 AM Learn How to License vCenter, ESXi and vSAN
Some vCenter and/or ESXi features require a separate license key. Virtual San (vSAN) is one such example. Since this is a cluster-centric
feature, you can either license vSAN using the Clusters tab on the Licenses page or directly from the cluster’s context menu.
The other method you can use to license vSAN is to right-click on the cluster name while in Hosts and Clusters view selecting Assign License
as you do.
No post would be complete without mentioning PowerCLI. Yep, you can query and add license keys to vCenter using PowerCLI.
First, launch a PowerCLI instance. Make sure you are connected only to the vCenter Server you want to query or make changes to.
If in
doubt, run Disconnect-VIServer * -Confirm:$false first. As always, use Connect-VIServer to connect to vCenter Server.
https://www.altaro.com/vmware/license-vcenter-esxi-vsan/ 7/15
4/21/24, 4:23 AM Learn How to License vCenter, ESXi and vSAN
$licInfo.AddLicense("XXXXX-XXXXX-XXXXX-XXXXX-XXXXX",$null)
Conclusion
Here are a few references on the subject matter in addition to the information presented in this and other posts you’ll find on our VMware
Blog.
https://www.altaro.com/vmware/license-vcenter-esxi-vsan/ 8/15
4/21/24, 4:23 AM Learn How to License vCenter, ESXi and vSAN
I am trying to remove the license from my vCenter Server 6 now that I have created and assigned the same license to my 6.5 vCenter
Server. The optin to Remove License is grey out even though I am logged in as the local administrator. Can you assist me with this?
Reply
Hi,
regards
Jason
Reply
Leave a comment
https://www.altaro.com/vmware/license-vcenter-esxi-vsan/ 9/15
4/21/24, 4:23 AM Learn How to License vCenter, ESXi and vSAN
Comment *
Submit Comment
https://www.altaro.com/vmware/license-vcenter-esxi-vsan/ 10/15
4/21/24, 4:23 AM Learn How to License vCenter, ESXi and vSAN
https://www.altaro.com/vmware/license-vcenter-esxi-vsan/ 11/15
4/21/24, 4:23 AM Learn How to License vCenter, ESXi and vSAN
https://www.altaro.com/vmware/license-vcenter-esxi-vsan/ 12/15
4/21/24, 4:23 AM Learn How to License vCenter, ESXi and vSAN
Jason Fenech
An IT veteran for over 23 years, I covered various roles throughout my career. Prior to joining Alta..
View Full Profile
AUTOMATION
CLOUD
DESKTOP VIRTUALIZATION
MANAGEMENT
NETWORKING
STORAGE
VMWARE BACKUP
VSPHERE
https://www.altaro.com/vmware/license-vcenter-esxi-vsan/ 13/15
4/21/24, 4:23 AM Learn How to License vCenter, ESXi and vSAN
Search
Search
Featured eBook
Read eBook
VMware Backup
https://www.altaro.com/vmware/license-vcenter-esxi-vsan/ 14/15
4/21/24, 4:23 AM Learn How to License vCenter, ESXi and vSAN
Watch Demo
Altaro Backup Solutions Free Versions Backup Solutions For MSPs Discover Altaro Try Altaro VM Backup
VM Backup & Replication Free VM Backup Altaro VM Backup for MSPs About Altaro Free 30-Day trial of Altaro VM Backup
Hyper-V Backup Free Windows Server Backup Altaro Office 365 Backup for MSPs Careers
VMware Backup Altaro EndPoint Backup for MSPs Contact
Altaro Office 365 Backup Altaro Windows Server Backup for MSPs News
Download your Free Trial
Windows Server Backup Partners
Resources
https://www.altaro.com/vmware/license-vcenter-esxi-vsan/ 15/15