List Virtual Container Hosts and Obtain Their IDs
You can obtain a list of the virtual container hosts (VCHs) that are running in vCenter Server or on an ESXi host by using the vic-machine ls
command. The vic-machine ls
command lists VCHs with their IDs, names, and versions, and informs you whether upgrades are available for the VCHs.
The vic-machine ls
command does not include any options in addition to the common options described in Common vic-machine
Options.
- To obtain a list of all VCHs that are running on an ESXi host or vCenter Server instance, you must provide the address of the target ESXi host or vCenter Server.
- You must specify the user name and optionally the password, either in the
--target
option or separately in the--user
and--password
options. If your vSphere environment uses untrusted, self-signed certificates, you must specify the thumbprint of the vCenter Server instance or ESXi host in the
--thumbprint
option. For information about how to obtain the certificate thumbprint, see Obtain vSphere Certificate Thumbprints.Use upper-case letters and colon delimitation in the thumbprint. Do not use space delimitation.
Example
This example specifies the vCenter Server credentials in the --target
option.
$ vic-machine-operating_system ls --target vcenter_server_username:password@vcenter_server_address --thumbprint certificate_thumbprint
Output
The vic-machine ls
command lists the VCHs that are running on the ESXi host or vCenter Server instance that you specified.
ID PATH NAME VERSION UPGRADE STATUS vm-101 path vch_1 version Upgradeable to version vm-102 path vch_2 version Up to date [...] vm-n path vch_n version Up to date
- The IDs are the vSphere Managed Object References, or morefs, for the VCH endpoint VMs. You can use VCH IDs when you run the
vic-machine inspect
,debug
,upgrade
, anddelete
commands. Using VCH IDs reduces the number of options that you need to specify when you run those commands. The
PATH
value depends on where the VCH is deployed:- ESXi host that is not managed by vCenter Server:
/ha-datacenter/host/host_name/Resources
- Standalone host that is managed by vCenter Server:
/datacenter/host/host_address/Resources
- vCenter Server cluster:
/datacenter/host/cluster_name/Resources
If VCHs are deployed in resource pools on hosts or clusters, the resource pool names appear afterResources
in the path. You can use the information inPATH
in the--compute-resource
option ofvic-machine
commands.
- ESXi host that is not managed by vCenter Server:
The
VERSION
value shows the version ofvic-machine
that was used to create the VCH. It includes the release version, the build number and the short Git commit checksum, in the formatvch_version-vch_build-git_commit
.The
UPGRADE STATUS
reflects whether the current version ofvic-machine
that you are using is the same as the one that you used to deploy a VCH. If the version or build number of the VCH does not match that ofvic-machine
,UPGRADE STATUS
isUpgradeable to vch_version-vch_build-git_commit
.