SlideShare ist ein Scribd-Unternehmen logo
1 von 10
Downloaden Sie, um offline zu lesen
WHITE   PAPER




The Architecture of VMware ESXi
VMware white paper




    Table of Contents

    Introduction ............................................................................................................ 3
    Components of eSXi ............................................................................................... 3
       VMkernel ............................................................................................................ 4
       File System .......................................................................................................... 4
       Users and Groups ................................................................................................ 4
       User worlds ......................................................................................................... 4
       Direct Console User Interface ............................................................................. 5
       Other User world Processes................................................................................ 5
       Open Network Ports ........................................................................................... 5
    System Image Design ............................................................................................. 6
    Startup and Operation ........................................................................................... 6
    Management Model for eSXi .................................................................................. 7
       State Information ................................................................................................ 7
       Common Information Model .............................................................................. 7
       VI aPI ................................................................................................................... 8
    Summary ................................................................................................................. 8
    about the author .................................................................................................... 9




2
VMware white paper




The architecture of VMware eSXi


Introduction                                                                                  Components of eSXi
VMware® ESXi is the next-generation hypervisor, providing                                     The VMware ESXi architecture comprises the underlying operat-
a new foundation for virtual infrastructure. This innovative                                  ing system, called VMkernel, and processes that run on top of
architecture operates independently from any general-purpose                                  it. VMkernel provides means for running all processes on the
operating system, offering improved security, increased reli-                                 system, including management applications and agents as well
ability, and simplified management. The compact architecture                                  as virtual machines. It has control of all hardware devices on the
is designed for integration directly into virtualization-optimized                            server, and manages resources for the applications. The main
server hardware, enabling rapid installation, configuration, and                              processes that run on top of VMkernel are:
deployment.                                                                                   • Direct Console User Interface (DCUI) — the low-level con-
Functionally, ESXi is equivalent to ESX 3, offering the same                                    figuration and management interface, accessible through the
levels of performance and scalability. However, the Linux-based                                 console of the server, used primarily for initial basic configura-
service console has been removed, reducing the footprint                                        tion.
to less than 32MB of memory. The functionally of the service                                  • The virtual machine monitor, which is the process that
console is replaced by new remote command line interfaces in                                    provides the execution environment for a virtual machine, as
conjunction with adherence to system management standards.                                      well as a helper process known as VMX. Each running virtual
Because ESXi is functionally equivalent to ESX, it supports the                                 machine has its own VMM and VMX process.
entire VMware Infrastructure 3 suite of products, including
                                                                                              • Various agents used to enable high-level VMware
VMware Virtual Machine File System, Virtual SMP, VirtualCenter,
                                                                                                Infrastructure management from remote applications.
VMotion, VMware Distributed Resource Scheduler, VMware
                                                                                              • The Common Information Model (CIM) system: CIM is the
High Availability, VMware Update Manager, and VMware
                                                                                                interface that enables hardware-level management from
Consolidated Backup.
                                                                                                remote applications via a set of standard APIs.
                                                                                              Figure 1 shows a diagram of the overall ESXi architecture. The
                                                                                              following sections provide a closer examination of each of
                                                                                              these components.




   C IM bro ker                 vp x a         SNM P
                                                                                                                                    VM       VM        VM
   Third-p arty
                               h o std        DCUI         s yslo g          VM X             VM X        VM X
  CIM plug-ins
                                                                                                                                             VM M
                                                                                                                                    VM M               VM M
                                                 U ser wo rld A P I

                                                                                                        D istrib u te d            V irtu al Ethernet
                                                                  R es o u rc e                       V M le sys tem              adapter and sw itch
                                                                 sch e d u lin g
                                                                                                      S to ra g e sta ck            N etw o rk stac k
                                                       V M kern el                                                   D e vice drivers

Figure 1: The streamlined architecture of VMware ESXi eliminates the need for a service console.




                                                                                                                                                                     3
VMware white paper




    VMkernel                                                             Users and Groups
    VMkernel is a POSIX-like operating system developed by               Users and groups can be defined locally on the ESXi system.
    VMware and provides certain functionality similar to that            They provide a way to distinguish users that access the system
    found in other operating systems, such as process creation and       via the Virtual Infrastructure Client, the remote command line
    control, signals, file system, and process threads. It is designed   interfaces, or the VIM API.
    specifically to support running multiple virtual machines and        Groups can be used to combine multiple users, just as in other
    provides such core functionality as:                                 operating systems. Groups can be used, for example, to set
    •	 Resource	scheduling	                                              privileges for many users at once. There are a few system users
                                                                         and groups, which are predefined in order to identify certain
    •	 I/O	stacks
                                                                         processes running in the VMkernel.
    •	 Device	drivers
                                                                         Administrative privileges can be set individually for each user or
    Some of the more pertinent aspects of the VMkernel are pre-
                                                                         group. User and group definitions are stored on the file system
    sented in the following sections.
                                                                         in the files /etc/passwd, /etc/shadow, and /etc/
                                                                         group, and as in other operating systems, passwords are gen-
    File System
                                                                         erated using standard crypt functions.
    VMkernel uses a simple in-memory file system to hold the ESXi
    configuration files, log files, and staged patches. For familiar-
                                                                         User Worlds
    ity, the structure of the file system is designed to be the same
                                                                         The term “user world” refers to a process running in the
    as that used in the service console of ESX. For example, ESXi
                                                                         VMkernel operating system. The environment in which a user
    configuration files are found in /etc/vmware and log files
                                                                         world runs is limited compared to what would be found in a
    are found in /var/log/vmware. Staged patches are
                                                                         general-purpose POSIX-compliant operating system such as
    uploaded to /tmp.
                                                                         Linux. For example:
    This file system is independent of the VMware VMFS file system
                                                                         •	 The set of available signals is limited.
    used to store virtual machines. Just as with ESX, a VMware VMFS
                                                                         •	 The system API is a subset of POSIX.
    datastore may be created on a local disk in the host system
                                                                         •	 The /proc file system is very limited.
    or on shared storage. If the only VMFS datastores used by the
    host are on external shared storage, the ESXi system does not        •	 A single swap file is available for all user world processes. If
    actually require a local hard drive. By running diskless setups,        a local disk exists, the swap file is created automatically in a
    you can increase reliability by avoiding hard drive failures and        small VFAT partition. Otherwise, the user is free to set up a
    reduce power and cooling consumption.                                   swap file on one of the attached VMFS datastores.
    Remote command line interfaces provide file management               In short, a user world is not intended as a general-purpose
    capabilities for both the in-memory file system and the VMware       mechanism to run arbitrary applications but provides only
    VMFS datastores. Access to the file system is implemented via        enough of a framework for processes that need to run in the
    HTTPS get and put Access is authenticated via users and              hypervisor environment.
    groups configured locally on the server and is controlled by
                                                                         Several important process run in user worlds. These can be
    local privileges.
                                                                         thought of as native VMkernel applications and are described in
    Because the in-memory file system does not persist when the          the following sections.
    power is shut down, log files do not survive a reboot. ESXi has
    the ability to configure a remote syslog server, enabling you to
    save all log information on an external system.




4
VMware white paper




Direct Console User Interface                                       Other User World Processes
The Direct Console User Interface (DCUI) is the local user inter-   Agents used by VMware to implement certain management
face that is displayed only on the console of an ESXi system.       capabilities have been ported from running in the service
It provides a BIOS-like, menu-driven interface for interacting      console to running in user worlds.
with the system. Its main purpose is initial configuration and      • The hostd process provides a programmatic interface to
troubleshooting. One of the system users defined in VMkernel          VMkernel and is used by direct VI Client connections as well
is dcui, which is used by the DCUI process to identify itself         as the VI API. It is the process that authenticates users and
when communicating with other components in the system.               keeps track of which users and groups have which privileges.
The DCUI configuration tasks include:                                 It also allows you to create and manage local users.
                                                                    • The vpxa process is the agent used to connect to
•	 Set administrative password
                                                                      VirtualCenter. It runs as a special system user called
•	 Configure networking, if not done automatically with DHCP
                                                                      vpxuser. It acts as the intermediary between the hostd
Troubleshooting tasks include:
                                                                      agent and VirtualCenter.
•	 Perform	simple network tests
                                                                    • The agent used to provide VMware HA capabilities has also
•	 View	logs                                                          been ported from running in the service console to running
                                                                      in its own user world.
•	 Restart	agents
                                                                    • A syslog daemon also runs as a user world. If you enable
•	 Restore defaults
                                                                      remote logging, that daemon forwards all the logs to the
The intention is that the user carries out minimum configura-
                                                                      remote target in addition to putting them in local files.
tion with the DCUI, then uses a remote management tool,
                                                                    • A process that handles initial discovery of an iSCSI target, after
such as the VI Client, VirtualCenter, or the remote command
                                                                      which point all iSCSI traffic is handled by the VMkernel, just as
line interfaces, to perform all other configuration and ongoing
                                                                      it handles any other device driver. Note that the iSCSI network
management tasks.
                                                                      interface is the same as the main VMkernel network interface.
Anyone using the DCUI must enter an administrative-level
                                                                    In addition, ESXi has processes that enable NTP-based time syn-
password, such as the root password. Initially, the root
                                                                    chronization and SNMP monitoring.
password is blank. VMware strongly recommends that you set
this password before connecting the server to any untrusted
                                                                    Open Network Ports
network. For example, turn on the server without any network
                                                                    A limited number of network ports are open on ESXi. The most
cable attached, set the password, attach the server to the
                                                                    important ports and services are the following:
network, then select the option for obtaining IP information via
                                                                    • 80 — This port serves a reverse proxy that is open only to
DHCP. Alternatively, if the server will be on a trusted network,
                                                                      display a static Web page that you see when browsing to the
you can set the administrator password using the VI Client. You
                                                                      server. Otherwise, this port redirects all traffic to port 443 to
can give additional local users the ability to access the DCUI
by making them a part of the localadmin group. This                   provide SSL-encrypted communications to the ESXi host.
approach provides a way to grant access to the DCUI without         • 443 (reverse proxy) — This port also acts as a reverse proxy to
handing out the root password, but obviously you would grant          a number of services to provide SSL-encrypted communica-
this right only to trusted accounts.                                  tion to these services. The services include the VMware Virtual
                                                                      Infrastructure API (VI API), which provides access to the RCLIs,
                                                                      VI Client, VirtualCenter Server, and the SDK.
                                                                    • 427 (service location protocol) — This port provides access for
                                                                      the service location protocol, a generic protocol to search for
                                                                      the VI API.
                                                                    • 5989 — This port is open for the CIM server, which is an inter-
                                                                      face for Third-party management tools.
                                                                    • 902 — This port is open to support the older VIM API, specifi-
                                                                      cally the older versions of the VI Client and VirtualCenter.
                                                                    Consult the ESX Server 3i Configuration Guide for the complete
                                                                    list of open ports.


                                                                                                                                           5
VMware white paper




    System Image Design                                                              responding to the hypervisor versions in the two boot banks.
                                                                                     The specific version to use is determined by which boot bank is
    ESXi is designed for distribution in various formats, including
                                                                                     currently active.
    directly embedded in the firmware of a server or as software to
                                                                                     The core hypervisor code also can contain custom code
    be installed on a server’s boot disk. Figure 2 shows a diagram of
                                                                                     provided by server vendors (OEMs) that provides additional
    the contents of the ESXi system image. Regardless of whether
                                                                                     functionality, such as hardware monitoring and support informa-
    the image exists on flash memory or on the hard drive of a
                                                                                     tion. These customizations would be present, for example, if ESXi
    computer, the same components are present:
                                                                                     had been obtained in embedded form from the server manufac-
    • A 4MB bootloader partition, which runs upon system boot
                                                                                     turer or if a custom version of ESXi was installed onto the hard
      up.
                                                                                     drive. Any update to an existing ESXi installation automatically
    • A 48MB boot bank, which contains the 32MB core hypervisor                      incorporates the proper update to this custom code.
      code, along with a second alternate boot bank of the same
      size. The reason for two boot banks is explained below.                        Startup and Operation
    • A 540MB store partition, which holds various utilities, such as                When the system boots for the first time, the VMkernel discovers
      the VI Client and VMware Tools images.                                         devices and selects appropriate drivers for them. It also discovers
    • A 110MB core dump partition, which is normally empty but                       local disk drives and, if the disks are empty, formats them so they
      which can hold diagnostic information in case of a system                      can be used to store virtual machines.
      problem.                                                                       During this initial boot, the VMkernel automatically creates the
    The ESXi system has two independent banks of memory, each                        configuration files using reasonable default values (for example,
    of which stores a full system image, as a fail-safe for applying                 using DHCP to obtain network identity information). Users can
    updates. When you upgrade the system, the new version is                         adjust the defaults with the direct console user interface or with
    loaded into the inactive bank of memory, and the system is                       the standard VMware management tools: VMware VirtualCenter
    set to use the updated bank when it reboots. If any problem                      and the VI Client. In the embedded version of ESXi, the configu-
    is detected during the boot process, the system automatically                    ration is stored in a specific part of the memory module that is
    boots from the previously used bank of memory. You can also                      both readable and writable. On subsequent reboots, the system
    intervene manually at boot time to choose which image to use                     reads the configuration from this persistent memory. In the rest
    for that boot, so you can back out of an update if necessary.                    of the boot process, the system is initialized and the resident file
                                                                                     system is built in memory. The hardware drivers are loaded, the
    At any given time, there are typically two versions of VI Client
                                                                                     various agents are started, and finally the DCUI process is started.
    and two versions of VMware Tools in the store partition, cor-
                                                                                     Once the system is up and running, all further routine operations
                                                   Bootloader partition [4MB]        occur in much the same way as they do in ESX 3. Because ESXi
                       Boot bank
                             bank
                        par��on
                        partition                                                    no longer includes a service console, many of the management
                         [48MB]                   Boot bank partition                activities performed on the ESX platform are no longer neces-
                                                  Core hypervisor (32MB), includes
                     Alt boot bank
                         boot bank
                                                                                     sary; they were required only to configure and manage the
                                                  • VMkernel
                        par��on
                        partition
                                                                                     service console itself. Other management tasks previously done
                                                  • Server manufacturer
                         [48MB]
                                                    customizations
                                                                                     in the service console are now performed in one of the follow-
                                                                                     ing ways:
                                                  Alt boot bank partition            •	 Using	the	VI	Client,	which	provides	a	Windows-based	graphical	
                                                  Initially empty
                                                                                        user interface for interactive configuration of the platform. The
    750MB
                                                                                        VI Client has been enhanced to provide capabilities that were
                     Store par��on
                           partition
                                                                                        previously available only in the service console.
                        [540MB]                   Store partition
                                                  Auxiliary files
                                                                                     •	 Using	the	remote	command	line	interfaces,	new	interfaces	
                                                  • VI Client
                                                                                        that enable scripting and command-line–based configuration
                                                  • VMware Tools
                                                                                        of the platform from a Linux or Windows-based server, via an
                                                  Runtime storage
                                                                                        encrypted and authenticated communication channel.
                                                                                     •	 Using	external	agents	that	leverage	well-defined	APIs,	such	as	
                       Core dump
                            dump                  Core dump partition
                                                                                        the VI API and the CIM management standard.
                        par��on
                        partition                 Normally empty
                        [110MB]


    Figure 2: Contents of the ESXi system image

6
VMware white paper




                                                                      Common Information Model
In addition, you can manage ESXi using VirtualCenter, just as
you would any ESX 3 system. You can have a mixed environ-             The Common Information Model (CIM) is an open standard
ment of ESX 3 and ESXi systems. VirtualCenter presents both           that defines how computing resources can be represented and
types of systems in the VI Client user interface in essentially the   managed. It enables a framework for agentless, standards-based
same way; certain features unique to ESXi management appear           monitoring of hardware resources for ESXi. This framework
for hosts equipped with that version.                                 consists of a CIM object manager, often called a CIM broker, and
                                                                      a set of CIM providers.
Management Model for eSXi                                             CIM providers are used as the mechanism to provide man-
                                                                      agement access to device drivers and underlying hardware.
The architecture of ESXi brings along with it a new manage-
                                                                      Hardware vendors, which include both the server manufactur-
ment model. The core tenets of this model are: a compute
                                                                      ers and specific hardware device vendors, can write providers
infrastructure based on stateless, interchangeable devices;
                                                                      to provide monitoring and management of their particular
centralized management, including administration and policy;
                                                                      devices. VMware also writes providers that implement monitor-
communication with the system using well-defined and
                                                                      ing	of	server	hardware,	ESX/ESXi	storage	infrastructure,	and	
standardized APIs instead of unstructured interactive sessions
                                                                      virtualization-specific resources. These providers run inside the
that are difficult to lock down and audit. The following section
                                                                      ESXi system and hence are designed to be extremely light-
describes some aspects of this management model in more
                                                                      weight and focused on specific management tasks. The CIM
detail.
                                                                      object manager in ESXi implements a standard CMPI interface
State Information                                                     developers can use to plug in new providers. However, the pro-
The state of an ESXi system is fully described by a handful of        viders must be packaged with the system image, and cannot
configuration files. These files control such functions as con-       be installed at run time.
figuration of virtual networking and storage, SSL keys, server
                                                                      The CIM broker takes information from all CIM providers and
network settings, and local user information Although these
                                                                      presents it to the outside world via standard APIs, including
configuration files are all found in the in-memory file system,
                                                                      WS-MAN. Figure 3 shows a diagram of the CIM management
they are also periodically copied to persistent storage. For
                                                                      model.
example, in ESXi Embedded, there is a small part of the server
firmware that is designated as read-write. In case of sudden
                                                                                                          Management Station
                                                                                                          Management server
power loss, you can reboot the server and it is restored to the
exact configuration of the last copy. Nothing else is required to
                                                                                                       Management
                                                                                                       Management
maintain state, so the internal hard disk can even be eliminated                                          client
                                                                                                          client
from the server.
You can also download a backup file that contains all the state
                                                                                                                   WS-MAN
                                                                                                                   WS-MAN




information. This allows you to replicate the state of an ESXi
system onto another similar system. You can create backups of
your server configuration, and if a server fails catastrophically,
you can easily replace it with an identical unit, then bring that
                                                                                                             CIM broker
new unit to the same state by restoring the backup file.
                                                                        VMkernel
                                                                        VMkernel                       VMware           Partner
                                                                                                       providers       providers



                                                                                          Platform
                                                                                            CPU         Memory          Network    Storage
                                                                                            CPU         Memory          Network    Storage
                                                                         Hardware



                                                                      Figure 3: CIM Management model




                                                                                                                                             7
VMware white paper




                                                                                               Summary
    VI API
    The VMware Virtual Infrastructure API provides a powerful                                  The ESXi architecture offers a variety of advantages over other
    interface for developing applications to integrate with the                                virtualization platforms, including::
    VMware Infrastructure. The VI API enables your program or
                                                                                               •	 Little	state	information	—	An	ESXi	system	can	be	treated	for	
    framework to invoke VirtualCenter Web Service interface func-
                                                                                                  practical purposes as a stateless compute node, with all the
    tions on VirtualCenter to manage and control ESX/ESXi. The VI
                                                                                                  state information easily uploaded from a saved configuration
    SDK provides developers with a full environment for creating
                                                                                                  file.
    applications that interact with ESXi in a variety of programming
                                                                                               •	 Better	security	—	With	a	small	footprint	and	minimal	inter-
    languages.
                                                                                                  faces, an ESXi system has a lower overall attack surface.
    The VI API is actually what is used by the management
                                                                                               • Hardware-like reliability — When it is integrated into firmware,
    clients provided by VMware, such as the VI Client and remote
                                                                                                 software is much less likely to become corrupted than when it
    command line interfaces. Furthermore, this API works for
                                                                                                 is stored on disk. The option of eliminating the local disk drive
    VirtualCenter as well as ESX/ESXi. The only difference is that
                                                                                                 can provide even greater system reliability.
    certain functions that affect multiple hosts, such as VMotion, are
    implemented only in VirtualCenter. Figure 4 depicts how the VI                             • Table 1 summarizes the architectural differences between ESX
    API is used with VMware Infrastructure.                                                      3 and ESXi
    Together, the VI API and the CIM standard provide a com-
                                                                                                                        VMware ESXi               VMware ESX 3
    prehensive way to manage an ESXi system from a remote or
                                                                                                   On-disk footprint    32MB                      2GB
    central location. The advantage of this model is that, instead of
                                                                                                   Bootstrap            Direct from boot loader   Service console driven
    relying upon locally installed agents, which must be adjusted
    whenever the underlying platform changes and reinstalled and                                   Direct manage-       DCUI                      Service console shell
                                                                                                   ment interaction                               session
    managed as they are updated, all software related to monitor-
    ing and management of a system can exist on an external and                                    Hardware moni-       CIM plug-in modules       Full applications in
                                                                                                   toring agents                                  service console
    centralized system. It becomes much easier to maintain this
    software, as opposed to managing multiple distributed agents.                                  Other agents         Implemented via VI        Full applications in
                                                                                                                        SDK only                  service console
    This approach to management also further enables the ESXi
    host to become a stateless entity, because there is nothing                                    Scripts, automa-     DCUI, remote              Service console shell
                                                                                                   tion and trouble-    command line inter-       and VI SDK
    to install locally on the host. Eliminating agents from running
                                                                                                   shooting             faces, and VI SDK
    locally also means that all the compute resources are available
                                                                                                   Other software       Moved to outside envi-    Resident in service
    for running virtual machines.
                                                                                                                        ronment                   console
                                                                                               Table 1: Differences between ESXi and ESX 3




                   V I C lie n t
                R e m o te C L Is                                                                                      ESXi
             V I S D K a p plication

                                                        V irtu a lC e n ter
                          VI API                            S erve r
                          P rivate
                                                                                                                       ESX 3
                          V irtualC en ter
                          p ro to c o l

    Figure 4: Using the VMware Virtual Infrastructure API in a VMware Infrastructure environment

8
VMware white paper




about the author
Charu Chaubal is Technical Marketing Manager at VMware,
where he specializes in enterprise datacenter management with
a focus on security. Previously, he worked at Sun Microsystems,
where he had over 7 years experience with designing and
developing distributed resource management and grid infra-
structure software solutions. Charu received a Bachelor of
Science in Engineering from the University of Pennsylvania, and
a Ph.D. from the University of California at Santa Barbara, where
he studied the numerical modeling of complex fluids. He is the
author of numerous publications and several patents in the
fields of datacenter automation and numerical price optimiza-
tion.

Acknowledgements
The author would like to thank Olivier Cremel and John
Gilmartin for their invaluable help in producing this document.




                                                                                         9
Revision: 20081024 WP-030-PRD-02-02



VMware, Inc. 3401 Hillview Ave. Palo Alto CA 94304 USA Tel 650-475-5000 Fax 650-475-5001 www.vmware.com
© 2007 VMware, Inc. All rights reserved. Protected by one or more of U.S. Patent Nos. 6,397,242, 6,496,847, 6,704,925,
6,711,672, 6,725,289, 6,735,601, 6,785,886, 6,789,156, 6,795,966, 6,880,022, 6,961,941, 6,961,806, 6,944,699, 7,069,413;
7,082,598, 7,089,377, 7,111,086, 7,111,145, 7,117,481, 7,149, 843, 7,155,558, 7,222,221, 7,260,815, 7,260,820, 7,269,683,
7,275,136, 7,277,998, 7,277,999, 7,278,030, and 7,281,102; patents pending. VMware, the VMware “boxes” logo and design,
Virtual SMP and VMotion are registered trademarks or trademarks of VMware, Inc. in the United States and/or other
jurisdictions. All other marks and names mentioned herein may be trademarks of their respective companies.

Weitere ähnliche Inhalte

Was ist angesagt?

Virtualization Questions
Virtualization QuestionsVirtualization Questions
Virtualization QuestionsTrupti Jethva
 
30 important-virtualization-vmware-interview-questions-with-answers
30 important-virtualization-vmware-interview-questions-with-answers30 important-virtualization-vmware-interview-questions-with-answers
30 important-virtualization-vmware-interview-questions-with-answersLatif Siddiqui
 
IBM’s System Director VMControl: Advanced Multi-Platform Virtualization Manag...
IBM’s System Director VMControl: Advanced Multi-Platform Virtualization Manag...IBM’s System Director VMControl: Advanced Multi-Platform Virtualization Manag...
IBM’s System Director VMControl: Advanced Multi-Platform Virtualization Manag...IBM India Smarter Computing
 
Disco: Running Commodity Operating Systems on Scalable Multiprocessors Disco
Disco: Running Commodity Operating Systems on Scalable Multiprocessors DiscoDisco: Running Commodity Operating Systems on Scalable Multiprocessors Disco
Disco: Running Commodity Operating Systems on Scalable Multiprocessors DiscoMagnus Backman
 
Security Best Practices For Hyper V And Server Virtualization
Security Best Practices For Hyper V And Server VirtualizationSecurity Best Practices For Hyper V And Server Virtualization
Security Best Practices For Hyper V And Server Virtualizationrsnarayanan
 
Linux Foundation Collaboration Summit 13 :10 years of Xen and Beyond
Linux Foundation Collaboration Summit 13 :10 years of Xen and BeyondLinux Foundation Collaboration Summit 13 :10 years of Xen and Beyond
Linux Foundation Collaboration Summit 13 :10 years of Xen and BeyondThe Linux Foundation
 
Processor Virtualization Comparison VMWare ESXi vs Microsoft Hyper-V
Processor Virtualization Comparison VMWare ESXi vs Microsoft Hyper-VProcessor Virtualization Comparison VMWare ESXi vs Microsoft Hyper-V
Processor Virtualization Comparison VMWare ESXi vs Microsoft Hyper-VBlesson Babu
 
Linux On V Mware ESXi
Linux On V Mware ESXiLinux On V Mware ESXi
Linux On V Mware ESXiMasafumi Ohta
 
Introduction to the Linux on System z Terminal Server using z/VM IUCV
Introduction to the Linux on System z Terminal Server using z/VM IUCVIntroduction to the Linux on System z Terminal Server using z/VM IUCV
Introduction to the Linux on System z Terminal Server using z/VM IUCVIBM India Smarter Computing
 
Keynote Speech: Xen ARM Virtualization
Keynote Speech: Xen ARM VirtualizationKeynote Speech: Xen ARM Virtualization
Keynote Speech: Xen ARM VirtualizationThe Linux Foundation
 
IBM PowerVM Virtualization Introduction and Configuration
IBM PowerVM Virtualization Introduction and ConfigurationIBM PowerVM Virtualization Introduction and Configuration
IBM PowerVM Virtualization Introduction and ConfigurationIBM India Smarter Computing
 
HP Converged Systems
HP Converged SystemsHP Converged Systems
HP Converged SystemsRien du Pre
 
Desktopvirtualisatie met VMware View, de laatste ontwikkelingen
Desktopvirtualisatie met VMware View, de laatste ontwikkelingenDesktopvirtualisatie met VMware View, de laatste ontwikkelingen
Desktopvirtualisatie met VMware View, de laatste ontwikkelingenUNIT4 IT Solutions
 
Herramientas De AdministracióN
Herramientas De AdministracióNHerramientas De AdministracióN
Herramientas De AdministracióNEduardo Castro
 
IBM SONAS and VMware vSphere 5 scale-out cloud foundation: A reference guide ...
IBM SONAS and VMware vSphere 5 scale-out cloud foundation: A reference guide ...IBM SONAS and VMware vSphere 5 scale-out cloud foundation: A reference guide ...
IBM SONAS and VMware vSphere 5 scale-out cloud foundation: A reference guide ...IBM India Smarter Computing
 
Mac OS X Snow Leopard & Informix IDS 11.5 + PHP5
Mac OS X Snow Leopard & Informix IDS 11.5 + PHP5Mac OS X Snow Leopard & Informix IDS 11.5 + PHP5
Mac OS X Snow Leopard & Informix IDS 11.5 + PHP5Antonio Musarra
 

Was ist angesagt? (20)

Virtualization Questions
Virtualization QuestionsVirtualization Questions
Virtualization Questions
 
30 important-virtualization-vmware-interview-questions-with-answers
30 important-virtualization-vmware-interview-questions-with-answers30 important-virtualization-vmware-interview-questions-with-answers
30 important-virtualization-vmware-interview-questions-with-answers
 
incs775_lect6.ppt
incs775_lect6.pptincs775_lect6.ppt
incs775_lect6.ppt
 
IBM’s System Director VMControl: Advanced Multi-Platform Virtualization Manag...
IBM’s System Director VMControl: Advanced Multi-Platform Virtualization Manag...IBM’s System Director VMControl: Advanced Multi-Platform Virtualization Manag...
IBM’s System Director VMControl: Advanced Multi-Platform Virtualization Manag...
 
Disco: Running Commodity Operating Systems on Scalable Multiprocessors Disco
Disco: Running Commodity Operating Systems on Scalable Multiprocessors DiscoDisco: Running Commodity Operating Systems on Scalable Multiprocessors Disco
Disco: Running Commodity Operating Systems on Scalable Multiprocessors Disco
 
Paravirtualization
ParavirtualizationParavirtualization
Paravirtualization
 
Transitioning to vmWare ESXi
Transitioning to vmWare ESXiTransitioning to vmWare ESXi
Transitioning to vmWare ESXi
 
Security Best Practices For Hyper V And Server Virtualization
Security Best Practices For Hyper V And Server VirtualizationSecurity Best Practices For Hyper V And Server Virtualization
Security Best Practices For Hyper V And Server Virtualization
 
Linux Foundation Collaboration Summit 13 :10 years of Xen and Beyond
Linux Foundation Collaboration Summit 13 :10 years of Xen and BeyondLinux Foundation Collaboration Summit 13 :10 years of Xen and Beyond
Linux Foundation Collaboration Summit 13 :10 years of Xen and Beyond
 
IBM XIV Storage and VMware
IBM XIV Storage and VMwareIBM XIV Storage and VMware
IBM XIV Storage and VMware
 
Processor Virtualization Comparison VMWare ESXi vs Microsoft Hyper-V
Processor Virtualization Comparison VMWare ESXi vs Microsoft Hyper-VProcessor Virtualization Comparison VMWare ESXi vs Microsoft Hyper-V
Processor Virtualization Comparison VMWare ESXi vs Microsoft Hyper-V
 
Linux On V Mware ESXi
Linux On V Mware ESXiLinux On V Mware ESXi
Linux On V Mware ESXi
 
Introduction to the Linux on System z Terminal Server using z/VM IUCV
Introduction to the Linux on System z Terminal Server using z/VM IUCVIntroduction to the Linux on System z Terminal Server using z/VM IUCV
Introduction to the Linux on System z Terminal Server using z/VM IUCV
 
Keynote Speech: Xen ARM Virtualization
Keynote Speech: Xen ARM VirtualizationKeynote Speech: Xen ARM Virtualization
Keynote Speech: Xen ARM Virtualization
 
IBM PowerVM Virtualization Introduction and Configuration
IBM PowerVM Virtualization Introduction and ConfigurationIBM PowerVM Virtualization Introduction and Configuration
IBM PowerVM Virtualization Introduction and Configuration
 
HP Converged Systems
HP Converged SystemsHP Converged Systems
HP Converged Systems
 
Desktopvirtualisatie met VMware View, de laatste ontwikkelingen
Desktopvirtualisatie met VMware View, de laatste ontwikkelingenDesktopvirtualisatie met VMware View, de laatste ontwikkelingen
Desktopvirtualisatie met VMware View, de laatste ontwikkelingen
 
Herramientas De AdministracióN
Herramientas De AdministracióNHerramientas De AdministracióN
Herramientas De AdministracióN
 
IBM SONAS and VMware vSphere 5 scale-out cloud foundation: A reference guide ...
IBM SONAS and VMware vSphere 5 scale-out cloud foundation: A reference guide ...IBM SONAS and VMware vSphere 5 scale-out cloud foundation: A reference guide ...
IBM SONAS and VMware vSphere 5 scale-out cloud foundation: A reference guide ...
 
Mac OS X Snow Leopard & Informix IDS 11.5 + PHP5
Mac OS X Snow Leopard & Informix IDS 11.5 + PHP5Mac OS X Snow Leopard & Informix IDS 11.5 + PHP5
Mac OS X Snow Leopard & Informix IDS 11.5 + PHP5
 

Ähnlich wie VMware ESXi architecture overview

Es xi 4.1 migration guide
Es xi 4.1 migration guideEs xi 4.1 migration guide
Es xi 4.1 migration guideesarakaitis
 
VIRTUALIZATION STRUCTURES TOOLS.docx
VIRTUALIZATION STRUCTURES TOOLS.docxVIRTUALIZATION STRUCTURES TOOLS.docx
VIRTUALIZATION STRUCTURES TOOLS.docxkumari36
 
Virtualization VMWare technology
Virtualization VMWare technologyVirtualization VMWare technology
Virtualization VMWare technologysanjoysanyal
 
Virtualisation with v mware
Virtualisation with v mwareVirtualisation with v mware
Virtualisation with v mwaresagaroceanic11
 
Esx Server 3i Presentation[1]
Esx Server 3i Presentation[1]Esx Server 3i Presentation[1]
Esx Server 3i Presentation[1]Rishi Sharma
 
What is Virtualization
What is VirtualizationWhat is Virtualization
What is VirtualizationIsrael Marcus
 
Mid term report
Mid term reportMid term report
Mid term reportlokesh039
 
virtualization.pptx
virtualization.pptxvirtualization.pptx
virtualization.pptxssuser6e6eec
 
Virtualizare si SCVMM2008
Virtualizare si SCVMM2008Virtualizare si SCVMM2008
Virtualizare si SCVMM2008Tudor Damian
 
VMware vSphere technical presentation
VMware vSphere technical presentationVMware vSphere technical presentation
VMware vSphere technical presentationaleyeldean
 
APznzaamT18LaGRvfDd3vc6XGHHoq2hlFqHYsO9vYeEQXTa-sAm9oMvLFaeBQkqdEEa1z4UJVAboW...
APznzaamT18LaGRvfDd3vc6XGHHoq2hlFqHYsO9vYeEQXTa-sAm9oMvLFaeBQkqdEEa1z4UJVAboW...APznzaamT18LaGRvfDd3vc6XGHHoq2hlFqHYsO9vYeEQXTa-sAm9oMvLFaeBQkqdEEa1z4UJVAboW...
APznzaamT18LaGRvfDd3vc6XGHHoq2hlFqHYsO9vYeEQXTa-sAm9oMvLFaeBQkqdEEa1z4UJVAboW...Neha417639
 
Virtualization
VirtualizationVirtualization
Virtualizationvishnurk
 
Vm ware esx vs microsoft hyper
Vm ware esx vs microsoft hyperVm ware esx vs microsoft hyper
Vm ware esx vs microsoft hyperBogdan Chiribau
 
vmwarevspheretechnicalpresentation-100822072122-phpapp01.pdf
vmwarevspheretechnicalpresentation-100822072122-phpapp01.pdfvmwarevspheretechnicalpresentation-100822072122-phpapp01.pdf
vmwarevspheretechnicalpresentation-100822072122-phpapp01.pdfsamarth97
 
Virtualization technology and an application of building vm ware
Virtualization technology and an application of building vm wareVirtualization technology and an application of building vm ware
Virtualization technology and an application of building vm wareYeditepe University
 
VMware Esx Short Presentation
VMware Esx Short PresentationVMware Esx Short Presentation
VMware Esx Short PresentationBarcamp Cork
 

Ähnlich wie VMware ESXi architecture overview (20)

Es xi 4.1 migration guide
Es xi 4.1 migration guideEs xi 4.1 migration guide
Es xi 4.1 migration guide
 
VIRTUALIZATION STRUCTURES TOOLS.docx
VIRTUALIZATION STRUCTURES TOOLS.docxVIRTUALIZATION STRUCTURES TOOLS.docx
VIRTUALIZATION STRUCTURES TOOLS.docx
 
Virtualization VMWare technology
Virtualization VMWare technologyVirtualization VMWare technology
Virtualization VMWare technology
 
Virtualisation with v mware
Virtualisation with v mwareVirtualisation with v mware
Virtualisation with v mware
 
Esx Server 3i Presentation[1]
Esx Server 3i Presentation[1]Esx Server 3i Presentation[1]
Esx Server 3i Presentation[1]
 
Unit II.ppt
Unit II.pptUnit II.ppt
Unit II.ppt
 
Virtualization
VirtualizationVirtualization
Virtualization
 
Vitualisation
VitualisationVitualisation
Vitualisation
 
What is Virtualization
What is VirtualizationWhat is Virtualization
What is Virtualization
 
Mid term report
Mid term reportMid term report
Mid term report
 
virtualization.pptx
virtualization.pptxvirtualization.pptx
virtualization.pptx
 
IBM XIV Gen3 Storage System
IBM XIV Gen3 Storage SystemIBM XIV Gen3 Storage System
IBM XIV Gen3 Storage System
 
Virtualizare si SCVMM2008
Virtualizare si SCVMM2008Virtualizare si SCVMM2008
Virtualizare si SCVMM2008
 
VMware vSphere technical presentation
VMware vSphere technical presentationVMware vSphere technical presentation
VMware vSphere technical presentation
 
APznzaamT18LaGRvfDd3vc6XGHHoq2hlFqHYsO9vYeEQXTa-sAm9oMvLFaeBQkqdEEa1z4UJVAboW...
APznzaamT18LaGRvfDd3vc6XGHHoq2hlFqHYsO9vYeEQXTa-sAm9oMvLFaeBQkqdEEa1z4UJVAboW...APznzaamT18LaGRvfDd3vc6XGHHoq2hlFqHYsO9vYeEQXTa-sAm9oMvLFaeBQkqdEEa1z4UJVAboW...
APznzaamT18LaGRvfDd3vc6XGHHoq2hlFqHYsO9vYeEQXTa-sAm9oMvLFaeBQkqdEEa1z4UJVAboW...
 
Virtualization
VirtualizationVirtualization
Virtualization
 
Vm ware esx vs microsoft hyper
Vm ware esx vs microsoft hyperVm ware esx vs microsoft hyper
Vm ware esx vs microsoft hyper
 
vmwarevspheretechnicalpresentation-100822072122-phpapp01.pdf
vmwarevspheretechnicalpresentation-100822072122-phpapp01.pdfvmwarevspheretechnicalpresentation-100822072122-phpapp01.pdf
vmwarevspheretechnicalpresentation-100822072122-phpapp01.pdf
 
Virtualization technology and an application of building vm ware
Virtualization technology and an application of building vm wareVirtualization technology and an application of building vm ware
Virtualization technology and an application of building vm ware
 
VMware Esx Short Presentation
VMware Esx Short PresentationVMware Esx Short Presentation
VMware Esx Short Presentation
 

Kürzlich hochgeladen

SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 

Kürzlich hochgeladen (20)

SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 

VMware ESXi architecture overview

  • 1. WHITE PAPER The Architecture of VMware ESXi
  • 2. VMware white paper Table of Contents Introduction ............................................................................................................ 3 Components of eSXi ............................................................................................... 3 VMkernel ............................................................................................................ 4 File System .......................................................................................................... 4 Users and Groups ................................................................................................ 4 User worlds ......................................................................................................... 4 Direct Console User Interface ............................................................................. 5 Other User world Processes................................................................................ 5 Open Network Ports ........................................................................................... 5 System Image Design ............................................................................................. 6 Startup and Operation ........................................................................................... 6 Management Model for eSXi .................................................................................. 7 State Information ................................................................................................ 7 Common Information Model .............................................................................. 7 VI aPI ................................................................................................................... 8 Summary ................................................................................................................. 8 about the author .................................................................................................... 9 2
  • 3. VMware white paper The architecture of VMware eSXi Introduction Components of eSXi VMware® ESXi is the next-generation hypervisor, providing The VMware ESXi architecture comprises the underlying operat- a new foundation for virtual infrastructure. This innovative ing system, called VMkernel, and processes that run on top of architecture operates independently from any general-purpose it. VMkernel provides means for running all processes on the operating system, offering improved security, increased reli- system, including management applications and agents as well ability, and simplified management. The compact architecture as virtual machines. It has control of all hardware devices on the is designed for integration directly into virtualization-optimized server, and manages resources for the applications. The main server hardware, enabling rapid installation, configuration, and processes that run on top of VMkernel are: deployment. • Direct Console User Interface (DCUI) — the low-level con- Functionally, ESXi is equivalent to ESX 3, offering the same figuration and management interface, accessible through the levels of performance and scalability. However, the Linux-based console of the server, used primarily for initial basic configura- service console has been removed, reducing the footprint tion. to less than 32MB of memory. The functionally of the service • The virtual machine monitor, which is the process that console is replaced by new remote command line interfaces in provides the execution environment for a virtual machine, as conjunction with adherence to system management standards. well as a helper process known as VMX. Each running virtual Because ESXi is functionally equivalent to ESX, it supports the machine has its own VMM and VMX process. entire VMware Infrastructure 3 suite of products, including • Various agents used to enable high-level VMware VMware Virtual Machine File System, Virtual SMP, VirtualCenter, Infrastructure management from remote applications. VMotion, VMware Distributed Resource Scheduler, VMware • The Common Information Model (CIM) system: CIM is the High Availability, VMware Update Manager, and VMware interface that enables hardware-level management from Consolidated Backup. remote applications via a set of standard APIs. Figure 1 shows a diagram of the overall ESXi architecture. The following sections provide a closer examination of each of these components. C IM bro ker vp x a SNM P VM VM VM Third-p arty h o std DCUI s yslo g VM X VM X VM X CIM plug-ins VM M VM M VM M U ser wo rld A P I D istrib u te d V irtu al Ethernet R es o u rc e V M le sys tem adapter and sw itch sch e d u lin g S to ra g e sta ck N etw o rk stac k V M kern el D e vice drivers Figure 1: The streamlined architecture of VMware ESXi eliminates the need for a service console. 3
  • 4. VMware white paper VMkernel Users and Groups VMkernel is a POSIX-like operating system developed by Users and groups can be defined locally on the ESXi system. VMware and provides certain functionality similar to that They provide a way to distinguish users that access the system found in other operating systems, such as process creation and via the Virtual Infrastructure Client, the remote command line control, signals, file system, and process threads. It is designed interfaces, or the VIM API. specifically to support running multiple virtual machines and Groups can be used to combine multiple users, just as in other provides such core functionality as: operating systems. Groups can be used, for example, to set • Resource scheduling privileges for many users at once. There are a few system users and groups, which are predefined in order to identify certain • I/O stacks processes running in the VMkernel. • Device drivers Administrative privileges can be set individually for each user or Some of the more pertinent aspects of the VMkernel are pre- group. User and group definitions are stored on the file system sented in the following sections. in the files /etc/passwd, /etc/shadow, and /etc/ group, and as in other operating systems, passwords are gen- File System erated using standard crypt functions. VMkernel uses a simple in-memory file system to hold the ESXi configuration files, log files, and staged patches. For familiar- User Worlds ity, the structure of the file system is designed to be the same The term “user world” refers to a process running in the as that used in the service console of ESX. For example, ESXi VMkernel operating system. The environment in which a user configuration files are found in /etc/vmware and log files world runs is limited compared to what would be found in a are found in /var/log/vmware. Staged patches are general-purpose POSIX-compliant operating system such as uploaded to /tmp. Linux. For example: This file system is independent of the VMware VMFS file system • The set of available signals is limited. used to store virtual machines. Just as with ESX, a VMware VMFS • The system API is a subset of POSIX. datastore may be created on a local disk in the host system • The /proc file system is very limited. or on shared storage. If the only VMFS datastores used by the host are on external shared storage, the ESXi system does not • A single swap file is available for all user world processes. If actually require a local hard drive. By running diskless setups, a local disk exists, the swap file is created automatically in a you can increase reliability by avoiding hard drive failures and small VFAT partition. Otherwise, the user is free to set up a reduce power and cooling consumption. swap file on one of the attached VMFS datastores. Remote command line interfaces provide file management In short, a user world is not intended as a general-purpose capabilities for both the in-memory file system and the VMware mechanism to run arbitrary applications but provides only VMFS datastores. Access to the file system is implemented via enough of a framework for processes that need to run in the HTTPS get and put Access is authenticated via users and hypervisor environment. groups configured locally on the server and is controlled by Several important process run in user worlds. These can be local privileges. thought of as native VMkernel applications and are described in Because the in-memory file system does not persist when the the following sections. power is shut down, log files do not survive a reboot. ESXi has the ability to configure a remote syslog server, enabling you to save all log information on an external system. 4
  • 5. VMware white paper Direct Console User Interface Other User World Processes The Direct Console User Interface (DCUI) is the local user inter- Agents used by VMware to implement certain management face that is displayed only on the console of an ESXi system. capabilities have been ported from running in the service It provides a BIOS-like, menu-driven interface for interacting console to running in user worlds. with the system. Its main purpose is initial configuration and • The hostd process provides a programmatic interface to troubleshooting. One of the system users defined in VMkernel VMkernel and is used by direct VI Client connections as well is dcui, which is used by the DCUI process to identify itself as the VI API. It is the process that authenticates users and when communicating with other components in the system. keeps track of which users and groups have which privileges. The DCUI configuration tasks include: It also allows you to create and manage local users. • The vpxa process is the agent used to connect to • Set administrative password VirtualCenter. It runs as a special system user called • Configure networking, if not done automatically with DHCP vpxuser. It acts as the intermediary between the hostd Troubleshooting tasks include: agent and VirtualCenter. • Perform simple network tests • The agent used to provide VMware HA capabilities has also • View logs been ported from running in the service console to running in its own user world. • Restart agents • A syslog daemon also runs as a user world. If you enable • Restore defaults remote logging, that daemon forwards all the logs to the The intention is that the user carries out minimum configura- remote target in addition to putting them in local files. tion with the DCUI, then uses a remote management tool, • A process that handles initial discovery of an iSCSI target, after such as the VI Client, VirtualCenter, or the remote command which point all iSCSI traffic is handled by the VMkernel, just as line interfaces, to perform all other configuration and ongoing it handles any other device driver. Note that the iSCSI network management tasks. interface is the same as the main VMkernel network interface. Anyone using the DCUI must enter an administrative-level In addition, ESXi has processes that enable NTP-based time syn- password, such as the root password. Initially, the root chronization and SNMP monitoring. password is blank. VMware strongly recommends that you set this password before connecting the server to any untrusted Open Network Ports network. For example, turn on the server without any network A limited number of network ports are open on ESXi. The most cable attached, set the password, attach the server to the important ports and services are the following: network, then select the option for obtaining IP information via • 80 — This port serves a reverse proxy that is open only to DHCP. Alternatively, if the server will be on a trusted network, display a static Web page that you see when browsing to the you can set the administrator password using the VI Client. You server. Otherwise, this port redirects all traffic to port 443 to can give additional local users the ability to access the DCUI by making them a part of the localadmin group. This provide SSL-encrypted communications to the ESXi host. approach provides a way to grant access to the DCUI without • 443 (reverse proxy) — This port also acts as a reverse proxy to handing out the root password, but obviously you would grant a number of services to provide SSL-encrypted communica- this right only to trusted accounts. tion to these services. The services include the VMware Virtual Infrastructure API (VI API), which provides access to the RCLIs, VI Client, VirtualCenter Server, and the SDK. • 427 (service location protocol) — This port provides access for the service location protocol, a generic protocol to search for the VI API. • 5989 — This port is open for the CIM server, which is an inter- face for Third-party management tools. • 902 — This port is open to support the older VIM API, specifi- cally the older versions of the VI Client and VirtualCenter. Consult the ESX Server 3i Configuration Guide for the complete list of open ports. 5
  • 6. VMware white paper System Image Design responding to the hypervisor versions in the two boot banks. The specific version to use is determined by which boot bank is ESXi is designed for distribution in various formats, including currently active. directly embedded in the firmware of a server or as software to The core hypervisor code also can contain custom code be installed on a server’s boot disk. Figure 2 shows a diagram of provided by server vendors (OEMs) that provides additional the contents of the ESXi system image. Regardless of whether functionality, such as hardware monitoring and support informa- the image exists on flash memory or on the hard drive of a tion. These customizations would be present, for example, if ESXi computer, the same components are present: had been obtained in embedded form from the server manufac- • A 4MB bootloader partition, which runs upon system boot turer or if a custom version of ESXi was installed onto the hard up. drive. Any update to an existing ESXi installation automatically • A 48MB boot bank, which contains the 32MB core hypervisor incorporates the proper update to this custom code. code, along with a second alternate boot bank of the same size. The reason for two boot banks is explained below. Startup and Operation • A 540MB store partition, which holds various utilities, such as When the system boots for the first time, the VMkernel discovers the VI Client and VMware Tools images. devices and selects appropriate drivers for them. It also discovers • A 110MB core dump partition, which is normally empty but local disk drives and, if the disks are empty, formats them so they which can hold diagnostic information in case of a system can be used to store virtual machines. problem. During this initial boot, the VMkernel automatically creates the The ESXi system has two independent banks of memory, each configuration files using reasonable default values (for example, of which stores a full system image, as a fail-safe for applying using DHCP to obtain network identity information). Users can updates. When you upgrade the system, the new version is adjust the defaults with the direct console user interface or with loaded into the inactive bank of memory, and the system is the standard VMware management tools: VMware VirtualCenter set to use the updated bank when it reboots. If any problem and the VI Client. In the embedded version of ESXi, the configu- is detected during the boot process, the system automatically ration is stored in a specific part of the memory module that is boots from the previously used bank of memory. You can also both readable and writable. On subsequent reboots, the system intervene manually at boot time to choose which image to use reads the configuration from this persistent memory. In the rest for that boot, so you can back out of an update if necessary. of the boot process, the system is initialized and the resident file system is built in memory. The hardware drivers are loaded, the At any given time, there are typically two versions of VI Client various agents are started, and finally the DCUI process is started. and two versions of VMware Tools in the store partition, cor- Once the system is up and running, all further routine operations Bootloader partition [4MB] occur in much the same way as they do in ESX 3. Because ESXi Boot bank bank par��on partition no longer includes a service console, many of the management [48MB] Boot bank partition activities performed on the ESX platform are no longer neces- Core hypervisor (32MB), includes Alt boot bank boot bank sary; they were required only to configure and manage the • VMkernel par��on partition service console itself. Other management tasks previously done • Server manufacturer [48MB] customizations in the service console are now performed in one of the follow- ing ways: Alt boot bank partition • Using the VI Client, which provides a Windows-based graphical Initially empty user interface for interactive configuration of the platform. The 750MB VI Client has been enhanced to provide capabilities that were Store par��on partition previously available only in the service console. [540MB] Store partition Auxiliary files • Using the remote command line interfaces, new interfaces • VI Client that enable scripting and command-line–based configuration • VMware Tools of the platform from a Linux or Windows-based server, via an Runtime storage encrypted and authenticated communication channel. • Using external agents that leverage well-defined APIs, such as Core dump dump Core dump partition the VI API and the CIM management standard. par��on partition Normally empty [110MB] Figure 2: Contents of the ESXi system image 6
  • 7. VMware white paper Common Information Model In addition, you can manage ESXi using VirtualCenter, just as you would any ESX 3 system. You can have a mixed environ- The Common Information Model (CIM) is an open standard ment of ESX 3 and ESXi systems. VirtualCenter presents both that defines how computing resources can be represented and types of systems in the VI Client user interface in essentially the managed. It enables a framework for agentless, standards-based same way; certain features unique to ESXi management appear monitoring of hardware resources for ESXi. This framework for hosts equipped with that version. consists of a CIM object manager, often called a CIM broker, and a set of CIM providers. Management Model for eSXi CIM providers are used as the mechanism to provide man- agement access to device drivers and underlying hardware. The architecture of ESXi brings along with it a new manage- Hardware vendors, which include both the server manufactur- ment model. The core tenets of this model are: a compute ers and specific hardware device vendors, can write providers infrastructure based on stateless, interchangeable devices; to provide monitoring and management of their particular centralized management, including administration and policy; devices. VMware also writes providers that implement monitor- communication with the system using well-defined and ing of server hardware, ESX/ESXi storage infrastructure, and standardized APIs instead of unstructured interactive sessions virtualization-specific resources. These providers run inside the that are difficult to lock down and audit. The following section ESXi system and hence are designed to be extremely light- describes some aspects of this management model in more weight and focused on specific management tasks. The CIM detail. object manager in ESXi implements a standard CMPI interface State Information developers can use to plug in new providers. However, the pro- The state of an ESXi system is fully described by a handful of viders must be packaged with the system image, and cannot configuration files. These files control such functions as con- be installed at run time. figuration of virtual networking and storage, SSL keys, server The CIM broker takes information from all CIM providers and network settings, and local user information Although these presents it to the outside world via standard APIs, including configuration files are all found in the in-memory file system, WS-MAN. Figure 3 shows a diagram of the CIM management they are also periodically copied to persistent storage. For model. example, in ESXi Embedded, there is a small part of the server firmware that is designated as read-write. In case of sudden Management Station Management server power loss, you can reboot the server and it is restored to the exact configuration of the last copy. Nothing else is required to Management Management maintain state, so the internal hard disk can even be eliminated client client from the server. You can also download a backup file that contains all the state WS-MAN WS-MAN information. This allows you to replicate the state of an ESXi system onto another similar system. You can create backups of your server configuration, and if a server fails catastrophically, you can easily replace it with an identical unit, then bring that CIM broker new unit to the same state by restoring the backup file. VMkernel VMkernel VMware Partner providers providers Platform CPU Memory Network Storage CPU Memory Network Storage Hardware Figure 3: CIM Management model 7
  • 8. VMware white paper Summary VI API The VMware Virtual Infrastructure API provides a powerful The ESXi architecture offers a variety of advantages over other interface for developing applications to integrate with the virtualization platforms, including:: VMware Infrastructure. The VI API enables your program or • Little state information — An ESXi system can be treated for framework to invoke VirtualCenter Web Service interface func- practical purposes as a stateless compute node, with all the tions on VirtualCenter to manage and control ESX/ESXi. The VI state information easily uploaded from a saved configuration SDK provides developers with a full environment for creating file. applications that interact with ESXi in a variety of programming • Better security — With a small footprint and minimal inter- languages. faces, an ESXi system has a lower overall attack surface. The VI API is actually what is used by the management • Hardware-like reliability — When it is integrated into firmware, clients provided by VMware, such as the VI Client and remote software is much less likely to become corrupted than when it command line interfaces. Furthermore, this API works for is stored on disk. The option of eliminating the local disk drive VirtualCenter as well as ESX/ESXi. The only difference is that can provide even greater system reliability. certain functions that affect multiple hosts, such as VMotion, are implemented only in VirtualCenter. Figure 4 depicts how the VI • Table 1 summarizes the architectural differences between ESX API is used with VMware Infrastructure. 3 and ESXi Together, the VI API and the CIM standard provide a com- VMware ESXi VMware ESX 3 prehensive way to manage an ESXi system from a remote or On-disk footprint 32MB 2GB central location. The advantage of this model is that, instead of Bootstrap Direct from boot loader Service console driven relying upon locally installed agents, which must be adjusted whenever the underlying platform changes and reinstalled and Direct manage- DCUI Service console shell ment interaction session managed as they are updated, all software related to monitor- ing and management of a system can exist on an external and Hardware moni- CIM plug-in modules Full applications in toring agents service console centralized system. It becomes much easier to maintain this software, as opposed to managing multiple distributed agents. Other agents Implemented via VI Full applications in SDK only service console This approach to management also further enables the ESXi host to become a stateless entity, because there is nothing Scripts, automa- DCUI, remote Service console shell tion and trouble- command line inter- and VI SDK to install locally on the host. Eliminating agents from running shooting faces, and VI SDK locally also means that all the compute resources are available Other software Moved to outside envi- Resident in service for running virtual machines. ronment console Table 1: Differences between ESXi and ESX 3 V I C lie n t R e m o te C L Is ESXi V I S D K a p plication V irtu a lC e n ter VI API S erve r P rivate ESX 3 V irtualC en ter p ro to c o l Figure 4: Using the VMware Virtual Infrastructure API in a VMware Infrastructure environment 8
  • 9. VMware white paper about the author Charu Chaubal is Technical Marketing Manager at VMware, where he specializes in enterprise datacenter management with a focus on security. Previously, he worked at Sun Microsystems, where he had over 7 years experience with designing and developing distributed resource management and grid infra- structure software solutions. Charu received a Bachelor of Science in Engineering from the University of Pennsylvania, and a Ph.D. from the University of California at Santa Barbara, where he studied the numerical modeling of complex fluids. He is the author of numerous publications and several patents in the fields of datacenter automation and numerical price optimiza- tion. Acknowledgements The author would like to thank Olivier Cremel and John Gilmartin for their invaluable help in producing this document. 9
  • 10. Revision: 20081024 WP-030-PRD-02-02 VMware, Inc. 3401 Hillview Ave. Palo Alto CA 94304 USA Tel 650-475-5000 Fax 650-475-5001 www.vmware.com © 2007 VMware, Inc. All rights reserved. Protected by one or more of U.S. Patent Nos. 6,397,242, 6,496,847, 6,704,925, 6,711,672, 6,725,289, 6,735,601, 6,785,886, 6,789,156, 6,795,966, 6,880,022, 6,961,941, 6,961,806, 6,944,699, 7,069,413; 7,082,598, 7,089,377, 7,111,086, 7,111,145, 7,117,481, 7,149, 843, 7,155,558, 7,222,221, 7,260,815, 7,260,820, 7,269,683, 7,275,136, 7,277,998, 7,277,999, 7,278,030, and 7,281,102; patents pending. VMware, the VMware “boxes” logo and design, Virtual SMP and VMotion are registered trademarks or trademarks of VMware, Inc. in the United States and/or other jurisdictions. All other marks and names mentioned herein may be trademarks of their respective companies.