Modifying the VMCLI configuration file
The VMCLI configuration file (vmcliConfiguration.xml) contains settings for the Data Protection for VMware vSphere GUI or Data Protection for VMware vCloud GUI.
The Data Protection for VMware installation process requires that a user specifies a vCenter or vCloud Server IP address and whether to enable access to the GUI by a web browser. However, after installation, the server IP address and GUI access method cannot be modified by the installer.
To update these settings, you can manually edit the VMCLI configuration
file (vmcliConfiguration.xml). This file is created
during installation in the following locations:
On Windows systems:
C:\IBM\tivoli\tsm\tdpvmware\webserver\usr\servers\veProfile\tsmVmGUI
On Linux systems:
/opt/tivoli/tsm/tdpvmware/common/webserver/usr/servers/veProfile/tsmVmGUI/
- yes The GUI can be accessed directly by a web
browser. For example:
<enable_direct_start>yes</enable_direct_start> - no The GUI cannot be accessed directly by a
web browser. For example:
<enable_direct_start>no</enable_direct_start>
- vcenter The GUI is used for vSphere protection.
For example:
<mode>vcenter</mode> - vcloud The GUI is used for vCloud protection.
For example:
<mode>vcloud</mode>
<vcloud_url>https://vclouddir.myco.com</vcloud_url>
The https:// value
is required at the beginning of the vCloud Director server IP address.<vcenter_url>https://vcenter.myco.com/sdk</vcenter_url>
The https:// value
is required at the beginning of the vCenter server IP address. The /sdk value
is required at the end of the vCenter server IP address.Example vmcliConfiguration.xml files
<?xml version="1.0" encoding="UTF-8"?>
<vmcliAdaptor>
<VMCLIPath>C:\Program Files (x86)\Common Files\Tivoli\TDPVMware\VMwarePlugin\scripts\
</VMCLIPath>
<interruptDelay>900000</interruptDelay>
<mode>vcloud</mode>
<vcloud_url>https://vclouddir.myco.com</vcloud_url>
<vcenter_url></vcenter_url>
<enable_direct_start>yes</enable_direct_start>
</vmcliAdaptor>
<?xml version="1.0" encoding="UTF-8"?>
<vmcliAdaptor>
<VMCLIPath>C:\Program Files (x86)\Common Files\Tivoli\TDPVMware\VMwarePlugin\scripts\
</VMCLIPath>
<interruptDelay>900000</interruptDelay>
<mode>vcenter</mode>
<vcloud_url></vcloud_url>
<vcenter_url>https://vcenter.myco.com/sdk</vcenter_url>
<enable_direct_start>yes</enable_direct_start>
</vmcliAdaptor>