Book Image

VMware vSphere 5.5 Cookbook

By : Abhilash G B
Book Image

VMware vSphere 5.5 Cookbook

By: Abhilash G B

Overview of this book

Table of Contents (22 chapters)
VMware vSphere 5.5 Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Adding an ESXi host to vMA


Instead of adding a vCenter Server to vMA, it is possible to add just the individual ESXi hosts. This is particularly useful if a single vCenter is used to manage multiple data centers and you don't want to expose all the ESXi hosts managed by the vCenter to the vMA appliance.

How to do it…

The following procedure explains how to add an ESXi server to the vMA appliance:

  1. Log in to the vMA console or SSH as the vi-admin user.

  2. Issue the following command:

    vifp addserver <ESXi_server_name>
    

    Example:

    vifp addserver host001.vdescribed.lab
    
  3. When prompted, specify the root password for the ESXi host as indicated in the following screenshot.

  4. Issue the vifp listservers command to verify that the ESXi host was added.

How it works…

When you add an ESXi server to vMA, unlike adding a vCenter Server, vMA doesn't store the root password in its credstore.

Instead, it will create two users on the target ESXi server:

  • vi-admin with administrator privileges

  • vi-user with read-only privilege...