Menu
InformatiWeb Pro
  • Index
  • System admin
  • Virtualization

Login

Registration Password lost ?
FR
  • Windows Server
    • WMS 2012
    • WS2012 R2
    • WS2016
  • Citrix
    • Citrix NetScaler Gateway
    • Citrix XenApp / XenDesktop
    • Citrix XenServer
  • VMware
    • VMware vSphere
    • VMware Workstation
  • Microsoft
    • Hyper-V
  • InformatiWeb Pro
  • Virtualization
  • VMware
  • Install VMware ESXi 6.7 and create your first virtual machine

Install VMware ESXi 6.7 and create your first virtual machine

  • VMware
  • VMware ESXi, VMware vSphere
  • 30 May 2022 at 11:30 UTC
  • InformatiWeb
  • 2/3
Previous page

4. Register VMware ESXi

To register VMware ESXi, specify the web address shown on the home screen of your VMware ESXi hypervisor.
In our case : https://10.0.0.5/

Then, log in as root with the password defined during the installation of VMware ESXi.

The 1st time you log in, VMware will ask you if you want to participate in the Customer Experience Improvement Program (CEIP).
However, in many cases, companies don't like this kind of function for reasons of confidentiality.
So, uncheck "Join VMware Customer Experience Improvement Program" and click OK.

As you can see, by default VMware ESXi runs in evaluation mode and this evaluation license will expire in 60 days.
Click on the "Browser" tab on the left to open the menu.

Then, go to : Host -> Manage.

Then, go to the tab : Licensing.
As you can see, currently in trial mode, there are a lot of features.

Click on : Assign license.

In the "License key" box, enter the serial number that VMware provided to you on the VMware ESXi download page and click : Check license.

If the specified serial number is correct, the "License key is valid for VMware vSphere 6 Hypervisor" message will appear.
To use it, click on : Assign license.

As you can see, the big feature list is gone because VMware ESXi is now running in free version.
However, as long as the 60-day evaluation period has not been exceeded, you can very well click on "Remove license" to reactivate the paid features temporarily and thus learn how to use some paid features.

Once your VMware ESXi hypervisor is registered, the message about the evaluation mode will disappear from the web interface.

5. Add iso files to the VMware ESXi datastore

To install a guest operating system (OS) in a virtual machine, you have 2 possibilities :

  • insert the installation CD/DVD of it in the CD/DVD drive of your computer / server, then use it from the desired virtual machine
  • store the ISO files of the desired operating systems in a datastore of your VMware ESXi hypervisor and use them in the virtual CD/DVD drive of the desired virtual machine.
    Which is quite handy, since with a rack server there is no CD/DVD drive.

To store files in a datastore, go to the left menu and click on : Storage.

As you can see, by default there is only one datastore named : datastore1.
VMware ESXi is installed on this datastore.

Select it and click on : Datastore browser.

The datastore browser appears.
Select the "datastore1" and click on : Create directory.

Specify for example "ISOs" as name and click on : Create directory.

Select the "ISOs" folder you just created and click again on : Create directory.

For example, create one folder per operating system. In our case : Windows 10.

Then, select the new folder created (in our case : Windows 10) and click on the "Upload" button to send a file from your computer to this datastore.

Select the operating system ISO file that you want to install later in a virtual machine and click Open.

A progress bar will appear at the top right.
Wait while the file is being sent.

Once the file sending is complete, the sent ISO file will appear.
You can close this datastore browser by clicking on the "Close" button located at the bottom right.

6. Create a virtual machine

To create a virtual machine on your VMware ESXi hypervisor, go to the "Virtual Machines" menu and click : Create / Register VM.

In the "New virtual machine" wizard that appears, select "Create a new virtual machine" and click on : Next.

Provide a name for your new virtual machine and select :

  • Compatibility : compatibility with VMware and therefore also the version of the virtual hardware that will be used for it
  • Guest OS family : the type of guest operating system (Windows, Linux, ...)
  • Guest OS version : the version of the operating system you want to install (Windows version, ...)

In our case, we will create a virtual machine compatible with the current version (6.7) of our VMware ESXi hypervisor and in which we will install Microsoft Windows 10 (64-bit).

Select the datastore where you want to store this virtual machine (its configuration, as well as its virtual hard disk).
By default, there is only one. Namely, the one where VMware ESXi is installed.

Configure at least these options :

  • CPU : number of processors that will be allocated to the virtual machine.
    In the case of Windows 10, it's better to allocate 2 for it to be more fluid. But, it depends from one guest operating system to another.
  • Memory : the amount of random access memory (RAM) that will be allocated to your virtual machine. For recent versions of Windows, allocate at least 4 GB (4096 MB) for the 64-bit version and 2 GB (2048 MB) for the 32-bit (x86) version.
  • Hard disk : Maximum size that the virtual hard disk can take on the physical hard disk of your VMware ESXi hypervisor.
    Warning : by default, all the space indicated here will be reserved on the physical hard drive.
  • CD/DVD Drive 1 : allows you in particular to install the guest operating system in the virtual machine from a CD/DVD inserted in the CD/DVD drive of the server (Host device) or from an ISO file present in a datastore (Datastore ISO file).

In our case, we are going to choose our "Windows 10 - 2004 x64 - 20H1.iso" file present in the "ISOs/Windows 10" folder of our "datastore1".
Select the desired ISO file, then click the "Select" button.

Warning : for the virtual hard disk of your virtual machine, VMware ESXi will use static provisioning by default. To see it, expand the "Hard disk 1" section.

As you can see, you will be able to choose between :

  • Thin provisioned : the virtual hard disk file will grow larger as you store data in it from the guest operating system, and the size of the virtual hard disk will be limited to the capacity you specified.
  • Thick provisioned, lazily zeroed : the desired size for this virtual hard disk will be reserved directly on the datastore. This means that in our case this disk will take 40 GB on our database, even if this virtual hard disk is empty. For "lazily zeroed", it indicates that the blocks required for storing data in the virtual hard disk will be reset to zero on the physical disk from the moment you start storing data in the virtual hard disk.
  • Thick provisioned, eagerly zeroed : same as the previous option, but with the difference that all the physical disk blocks necessary for the storage of this virtual hard disk will be reset directly to zero when the virtual hard disk is created. This means that the creation of this type of virtual hard disk could take much longer depending on the size indicated for it.

In summary, if you want to save storage space, select "Thin provisioned".

Then, click on Next.

A summary of your virtual machine configuration is displayed.

Next page

Share this tutorial

Partager
Tweet

To see also

  • VMware ESXi 6.7 - Enable virtualization-based security (VBS)

    VMware 1/27/2023

    VMware ESXi 6.7 - Enable virtualization-based security (VBS)

  • VMware ESXi 6.7 - Import a VM (OVF / OVA) with a compressed hard disk

    VMware 8/31/2022

    VMware ESXi 6.7 - Import a VM (OVF / OVA) with a compressed hard disk

  • VMware ESXi 6.7 - Understand and avoid storage overprovisioning

    VMware 10/26/2022

    VMware ESXi 6.7 - Understand and avoid storage overprovisioning

  • VMware ESXi 6.7 - Use persistent memory (PMem) on a virtual VMware ESXi

    VMware 1/20/2023

    VMware ESXi 6.7 - Use persistent memory (PMem) on a virtual VMware ESXi

Comments

No comment

Share your opinion

Pinned content

  • Software (System admin)
  • Linux softwares
  • Our programs
  • Terms and conditions
  • Share your opinion

Contact

  • Guest book
  • Technical support
  • Contact

® InformatiWeb-Pro.net - InformatiWeb.net 2008-2022 - © Lionel Eppe - All rights reserved.

Total or partial reproduction of this site is prohibited and constitutes an infringement punishable by articles L.335-2 and following of the intellectual property Code.