VMware VCenter Server for Windows 6.5 的命令行安装和升级 Vsphere 65 Vcenter Server Windows Cmdline Install and Upgrade
VMware VCenter Server for Windows 6.5 的命令行安装和升级 Vsphere 65 Vcenter Server Windows Cmdline Install and Upgrade
You can install VMware vCenter Server™ on a virtual machine or physical server that runs Microsoft
Windows by using either the GUI or the command-line interface.
The command-line installation process includes downloading the vCenter Server installer, gathering the
required data, and using the samples in this technical note to install vCenter Server according to your needs.
This technical note describes how to install, upgrade, and uninstall vCenter Server by using the command-line
interface. The technical note provides you with example templates that you can use to install and upgrade
vCenter Server.
IMPORTANT VMware support cannot assist with troubleshooting command-line installation or upgrade of
vCenter Server. However, vCenter Server systems installed or upgraded by using the command-line interface
are fully supported.
Overview
By using the command-line interface, you can install vCenter Server with an embedded Platform Services
Controller, vCenter Server with an external Platform Services Controller, or an external Platform Services
Controller. You can also upgrade an existing vCenter Server 5.5 or 6.0 installation to vCenter Server 6.5. Before
the installation or upgrade, you must create a JSON file that contains the installation and configuration
parameters. You can either create a JSON file manually or generate a JSON file by running the installer in a
special mode using the installation wizard.
When you create the JSON file, populate the necessary data, and start the command-line process, the
parameters from the JSON file are passed to the vCenter Server installer. The installer uses the configuration
parameters that you provide in the JSON file and installs or upgrades, and configures vCenter Server
according to your specifications. The vCenter Server installer runs minimal validation on the configuration
parameters.
You install the Platform Services Controller and vCenter Server on the same virtual machine or physical
server.
This model is standalone and you cannot use it for replication of vCenter Single Sign-On data.
VMware, Inc. 1
Command-Line Installation and Upgrade of vCenter Server 6.5
You install the Platform Services Controller on one virtual machine or physical server and then install
vCenter Server on a different virtual machine or physical server.
This model is suitable for larger environments. With this model, you can configure many Platform
Services Controller instances to replicate their vCenter Single Sign-On data by joining them to the same
vCenter Single Sign-On domain.
For information about the supported architecture and deployment models in vSphere 6.5, see vSphere
Installation and Setup and vSphere Upgrade at http://www.pubs.vmware.com.
Requirements
Your Windows Server must have the latest updates and patches installed.
vCenter Server requires a database to store and organize server data. Each vCenter Server instance must have
its own database.
For environments with up to 20 hosts and 200 virtual machines, you can use the bundled PostgreSQL
database that the vCenter Server installer can install and set up for you during the vCenter Server
installation.
Larger environments require a supported external database that uses a data source name (DSN).
vCenter Server supports Oracle and Microsoft SQL Server databases as external databases.
For information about the vCenter Server installation and upgrade requirements and external database
configuration, see vSphere Installation and Setup and vSphere Upgrade at http://pubs.vmware.com.
1 Download the ISO installer file for vCenter Server from the VMware product page at
http://www.vmware.com/products.
The installer ISO file name is VMware-VIM-all-6.5.0-yyyyyy.iso, where yyyyyy is the build number.
b Fill in the JSON configuration file with the required parameters according to your specifications.
4 On the virtual machine or physical server where you are installing vCenter Server, open the Windows
command prompt.
VMware, Inc. 2
Command-Line Installation and Upgrade of vCenter Server 6.5
2 Navigate to the vCenter-Server/templates/ directory of the ISO file and open the install or upgrade
template in a text editor.
Installation Templates
You can use the templates in the vCenter-Server/templates/install directory of the ISO file to create
your JSON files. The example templates represent various vCenter Server installation configurations.
IMPORTANT Do not copy the JSON templates from the PDF file to avoid JSON format loss. Use the files that
are located in the vCenter-Server/templates/install directory of the ISO file.
To install vCenter Server with an embedded Platform Services Controller and an embedded database, use
the template from Example 1.
To install vCenter Server with an external Platform Services Controller and an external database, use the
template from Example 2 for the Platform Services Controller installation and the template from
Example 3 for the vCenter Server installation.
Example 1. Installation Template for vCenter Server with an Embedded Platform Services Controller and an
Embedded Database
{
"INSTALLDIR" : "C:\\Program Files\\VMware\\",
"vmware.data.directory" : "C:\\ProgramData\\VMware\\",
"deployment.node.type" : "embedded",
"db.type" : "embedded",
"vc.svcuser" : null,
"vc.svcuserpassword" : null,
"appliance.net.pnid" : "<enter_dns_fqdn_of_the_system>",
"appliance.net.ports" : {
"rhttpproxy.ext.port1" : 80,
"rhttpproxy.ext.port2" : 443,
"syslog.ext.port" : 514,
"syslog.ext.tls.port" : 1514,
"netdumper.ext.serviceport" : 6500,
"autodeploy.ext.serviceport" : 6501,
"autodeploy.ext.managementport" : 6502,
"vpxd.ext.port1" : 902,
"vsphere-client.ext.port1" : 9443
},
"vmdir.first-instance" : true,
"vmdir.domain-name" : "vsphere.local",
"vmdir.password" :
"<enter_platform_service_controller_administrator_password>",
"vmdir.site-name" : "Default-First-Site",
VMware, Inc. 3
Command-Line Installation and Upgrade of vCenter Server 6.5
"ceip_enabled" : false
}
VMware, Inc. 4
Command-Line Installation and Upgrade of vCenter Server 6.5
Example 3. Installation Template for vCenter Server with an External Platform Services Controller and an
External Database
{
"INSTALLDIR" : "C:\\Program Files\\VMware\\",
"vmware.data.directory" : "C:\\ProgramData\\VMware\\",
"deployment.node.type" : "management",
"db.type" : "external",
"db.dsn" : "<enter_vCenterServer_dsn>",
"db.user" : "<enter_vCenterServer_database_username>",
"db.password" : "<enter_vCenterServer_database_password>",
"vc.svcuser" : null,
"vc.svcuserpassword" : null,
"appliance.net.pnid" : "<enter_dns_fqdn_of_the_system>",
"appliance.net.ports" : {
"rhttpproxy.ext.port1" : 80,
"rhttpproxy.ext.port2" : 443,
"syslog.ext.port" : 514,
"syslog.ext.tls.port" : 1514,
"netdumper.ext.serviceport" : 6500,
"autodeploy.ext.serviceport" : 6501,
"autodeploy.ext.managementport" : 6502,
"vpxd.ext.port1" : 902,
"vsphere-client.ext.port1" : 9443
},
"system.vm0.hostname" : "<enter_dns_fqdn_of_the_platform_service_controller>",
"system.vm0.port" : "443",
"vmdir.password" :
"<enter_platform_service_controller_administrator_password>",
"vmdir.domain-name" : "vsphere.local"
}
Generate a JSON File for the Command-Line Installation by Using the GUI
You can generate a JSON file while you are installing vCenter Server by using the graphical interface, so that
you can use the JSON file in future command-line installations. You can also generate the same JSON file by
using the graphical interface without installing vCenter Server.
VMware, Inc. 5
Command-Line Installation and Upgrade of vCenter Server 6.5
To generate a JSON template file that contains all the necessary parameters:
1 Download the ISO installer file for vCenter Server from the VMware product page at
http://www.vmware.com/products.
The installer ISO file name is VMware-VIM-all-6.5.0-yyyyyy.iso, where yyyyyy is the build number.
3 On the virtual machine or physical server where you are installing vCenter Server, open the Windows
command prompt.
5 Start the vCenter Server installation wizard and export the JSON file, specifying the directory in which
the file is to be created.
To install vCenter Server and to export a JSON file, run the following command:
VMware-vCenter-Server.exe EXPORT_SETTINGS_DIR=export-dir
To use the wizard without installing vCenter Server and to export a JSON file, run the following
command:
The installer creates a settings.json file with the validated values at the specified location.
JSON Sample Files for Installing vCenter Server with an Embedded Platform Services
Controller
You can use the following sample JSON files to install vCenter Server with an embedded database or with an
external database. You must change the parameters in bold to your specific values.
For information about the parameters and their descriptions, see “Installation Parameters” on page 9.
Example 4. Sample JSON File for Installing vCenter Server with an Embedded Platform Services Controller
and an Embedded Database
{
"INSTALLDIR" : "C:\\Program Files\\VMware\\",
"vmware.data.directory" : "C:\\ProgramData\\VMware\\",
"deployment.node.type" : "embedded",
"db.type" : "embedded",
"appliance.net.pnid" : "enter_dns_fqdn_of_the_system",
"vmdir.first-instance" : true,
"vmdir.domain-name" : "vsphere.local",
"vmdir.password" : "enter_platform_service_controller_administrator_password",
"vmdir.site-name" : "Default-First-Site"
}
Example 5. Sample JSON File for Installing vCenter Server with an Embedded Platform Services Controller
and an External Database
{
"INSTALLDIR" : "C:\\Program Files\\VMware\\",
"vmware.data.directory" : "C:\\ProgramData\\VMware\\",
"deployment.node.type" : "embedded",
"db.type" : "external",
"db.dsn" : "my_db_DSN_with_SQL_authentication",
"db.user" : "my_db_user",
VMware, Inc. 6
Command-Line Installation and Upgrade of vCenter Server 6.5
"db.password" : "my_db_password",
"appliance.net.pnid" : "enter_dns_fqdn_of_the_system",
"vmdir.first-instance" : true,
"vmdir.domain-name" : "vsphere.local",
"vmdir.password" : "enter_sso_password",
"vmdir.site-name" : "Default-First-Site"
}
JSON Sample Files for Installing vCenter Server with an External Platform Services
Controller
You can use the following sample JSON files to install two vCenter Server instances with embedded databases
and register them with an external Platform Services Controller. You must first install the
Platform Services Controller, and then install the vCenter Server instances in sequence. You must change the
parameters in bold to your specific values.
For information about the parameters and their descriptions, see “Installation Parameters” on page 9.
Example 7. Sample JSON File for Installing the First vCenter Server Instance
{
"INSTALLDIR" : "C:\\Program Files\\VMware\\",
"vmware.data.directory" : "C:\\ProgramData\\VMware\\",
"appliance.net.pnid" : "enter_dns_fqdn_of_the_first_system",
"deployment.node.type" : "management",
"db.type" : "embedded",
"system.vm0.hostname" : "enter_dns_fqdn_of_the_platform_services_controller",
"system.vm0.port" : "443",
"vmdir.domain-name" : "vsphere.local",
"vmdir.password" : "enter_platform_service_controller_administrator_password"
}
Example 8. Sample JSON File for Installing the Second vCenter Server Instance by Using All Default Values
{
"appliance.net.pnid" : "enter_dns_fqdn_of_the_second_system",
"deployment.node.type" : "management",
"db.type" : "embedded",
"system.vm0.hostname" : "enter_dns_fqdn_of_the_platform_services_controller",
"vmdir.password" : "enter_platform_service_controller_administrator_password",
}
VMware, Inc. 7
Command-Line Installation and Upgrade of vCenter Server 6.5
JSON Sample File for Installing Platform Services Controller with HA or Multisite
Deployment
You can use the following sample JSON file to install a Platform Services Controller and join it as a replication
partner to a vCenter Single Sign-On domain in an existing Platform Services Controller. Two Platform Services
Controller instances can replicate their infrastructure data either within the same site or across different sites.
To configure two Platform Services Controller instances within one site in HA mode, when installing the
second Platform Services Controller, use the same site name as the site name of the first Platform Services
Controller. You must change the parameters in bold to your specific values.
For information about the parameters and their descriptions, see “Installation Parameters” on page 9.
Example 9. Sample JSON File for Installing the Second Platform Services Controller and Joining it to the
Same or Different Site Name
{
"appliance.net.pnid" :
"enter_dns_fqdn_of_the_second_platfrom_services_controller",
"deployment.node.type" : "infrastructure",
"vmdir.domain-name" : "enter_replication_partner_domain_name",
"vmdir.first-instance" : false,
"vmdir.replication-partner-hostname": "enter_replication_partner_hostname",
"vmdir.password" : "enter_replication_partner_sso_password",
"vmdir.site-name" : "enter_same_or_different_site_name"
}
VMware, Inc. 8
Command-Line Installation and Upgrade of vCenter Server 6.5
Installation Parameters
Depending on your installation specification, in the JSON configuration file, you must determine and provide
a list of the required parameters and their values.
Deployment type
For the complete list of required ports, see vSphere Installation and
Setup at http://pubs.vmware.com.
VMware, Inc. 9
Command-Line Installation and Upgrade of vCenter Server 6.5
Parameter Description
Database parameters
VMware, Inc. 10
Command-Line Installation and Upgrade of vCenter Server 6.5
Parameter Description
ceip_enabled This key describes the enabling option for the VMware's
Customer Experience Improvement Program (CEIP). By default
we have ceip_enabled:true, which indicates that you are
joining CEIP. If you prefer not to participate in the VMware's
CEIP for this product, you must disable CEIP by setting
ceip_enabled:false. You may join or leave VMware's CEIP
for this product at any time.
The installer validates the values that you provide and creates a validation report. The installer also creates a
status file at the same location that contains the status of the action that you performed.
1 Download the ISO installer file for vCenter Server from the VMware product page at
http://www.vmware.com/products.
The installer ISO file name is VMware-VIM-all-6.5.0-yyyyyy.iso, where yyyyyy is the build number.
3 Prepare the JSON templates for the type of installation that you are performing.
4 On the virtual machine or physical server where you are installing vCenter Server, open the Windows
command prompt.
VMware, Inc. 11
Command-Line Installation and Upgrade of vCenter Server 6.5
The preinstall checker validates all parameters and creates a report file at
%temp%\vim-vcs-precheck-report-65.html without installing vCenter Server.
vCenter Server version 5.5 with a vCenter Single Sign-On server on the same virtual machine or physical
server (simple install) to vCenter Server 6.5 with an embedded Platform Services Controller.
vCenter Server version 5.5 with a vCenter Single Sign-On server on a different virtual machine or physical
server (custom install) to vCenter Server 6.5 with an external Platform Services Controller.
vCenter Server version 6.0 with a with an embedded Platform Services Controller to version 6.5.
vCenter Server version 6.0 with an external Platform Services Controller to version 6.5.
To upgrade vCenter Server by using the command-line interface, you must download the vCenter Server ISO
installer, create the JSON configuration file, and run the command-line upgrade.
1 Download the ISO installer file for vCenter Server from the VMware product page at
http://www.vmware.com/products.
The installer ISO file name is VMware-VIM-all-6.5.0-yyyyyy.iso, where yyyyyy is the build number.
Copy the templates located at the vCenter-Server/templates/upgrade directory of the ISO file.
You can also create the file manually or use the command-line interface to generate the file with all
of the necessary information and configuration properties. For information, see “Create a JSON File
for Upgrade Manually” on page 13 and “Generate a JSON File for the Command-Line Upgrade by
Using the GUI” on page 16.
b Fill in the JSON configuration file with the required parameters according to your specifications.
4 On the virtual machine or physical server where you are upgrading vCenter Server, open the Windows
command prompt.
VMware, Inc. 12
Command-Line Installation and Upgrade of vCenter Server 6.5
2 Copy the sample template text from the \vCenter-Server\templates\upgrade folder of the ISO and paste
it in the JSON file.
Upgrade Templates
You can use the following templates to create your JSON files manually for vCenter Server upgrade
configurations.
To upgrade a vCenter Single Sign-On 5.5 to a standalone Platform Services Controller 6.5, use the template
from Example 11.
To upgrade vCenter Server 5.5 with an embedded or external database connected to an external vCenter
Single Sign-On to vCenter Server 6.5 with an external Platform Services Controller, use the template from
Example 12.
Example 10. Sample JSON file for upgrading vCenter Server 5.5 with an embedded or external database to
vCenter Server 6.5 with an embedded Platform Services Controller
{
"INSTALLDIR" : "C:\\Program Files\\VMware\\",
"vmware.data.directory" : "C:\\ProgramData\\VMware\\",
"upgrade.import.directory" : "C:\\ProgramData\\VMware\\vCenterServer\\export\\",
"vc.svcuser" : null,
"vc.svcuserpassword" : null,
"vmdir.password" : "<enter_platform_service_controller_password>",
"vc.5x.username" : "[email protected]",
"vc.5x.password" : "<enter_vc5x_administrator_password"
"ceip_enabled" : false
}
VMware, Inc. 13
Command-Line Installation and Upgrade of vCenter Server 6.5
Example 11. Sample JSON file for upgrading a vCenter Single Sign On 5.5 instance to a standalone Platform
Services Controller 6.5 instance
{
"INSTALLDIR" : "C:\\Program Files\\VMware\\",
"vmware.data.directory" : "C:\\ProgramData\\VMware\\",
"upgrade.import.directory" : "C:\\ProgramData\\VMware\\vCenterServer\\export\\",
"vmdir.password" : "<enter_platform_service_controller_administrator_password>",
"ceip_enabled" : false,
"appliance.net.ports" : {
"rhttpproxy.ext.port1" : 80,
"rhttpproxy.ext.port2" : 443,
"syslog.ext.port" : 514,
"syslog.ext.tls.port" : 1514
}
}
Example 12. Sample JSON file for upgrading vCenter Server 5.5 with an embedded or external database
connected to an external vCenter Single Sign-On to vCenter Server 6.5 with an external Platform Services
Controller
{
"INSTALLDIR" : "C:\\Program Files\\VMware\\",
"vmware.data.directory" : "C:\\ProgramData\\VMware\\",
"upgrade.import.directory" : "C:\\ProgramData\\VMware\\vCenterServer\\export\\",
"vc.svcuser" : null,
"vc.svcuserpassword" : null,
"vc.5x.username" : "[email protected]",
"vc.5x.password" : "<enter_vc5x_administrator_password>",
"system.vm0.port" : "443",
"vmdir.password" : "<enter_platform_service_controller_administrator_password>",
"appliance.net.ports" : {
"syslog.ext.port" : 514,
"syslog.ext.tls.port" : 1514
}
}
To upgrade a Platform Services Controller to a standalone Platform Services Controller, use the template
from Example 14.
To upgrade vCenter Server 6.0 with an embedded or external database connected to an external Platform
Services Controller to vCenter Server 6.5 with an external Platform Services Controller, use the template
from Example 15.
Example 13. Example 13 Sample JSON file for upgrading a vCenter Server 6.0 with an embedded or external
database to vCenter Server 6.5 with an embedded Platform Services Controller
{
"vmdir.password" : "<enter_platform_service_controller_administrator_password>",
"ceip_enabled" : false
}
Example 14. Sample JSON file for upgrading a Platform Services Controller 6.0 instance to an external
(standalone) Platform Services Controller 6.5 instance
{
"vmdir.password" : "<enter_platform_service_controller_administrator_password>",
"ceip_enabled" : false
VMware, Inc. 14
Command-Line Installation and Upgrade of vCenter Server 6.5
Example 15. Sample JSON file for upgrading vCenter Server 6.0 with an embedded or external database
connected to an external Platform Services Controller to vCenter Server 6.5 with an external Platform Services
Controller
{
"vmdir.password" : "enter_platform_service_controller_password"
}
VMware, Inc. 15
Command-Line Installation and Upgrade of vCenter Server 6.5
Upgrade Parameters
Depending on your specification, in the JSON configuration file, you must determine and provide a list of the
required parameters and their values.
Deployment type
For the complete list of required ports, see vSphere Installation and
Setup at http://pubs.vmware.com.
VMware, Inc. 16
Command-Line Installation and Upgrade of vCenter Server 6.5
Parameter Description
Database parameters
VMware, Inc. 17
Command-Line Installation and Upgrade of vCenter Server 6.5
Parameter Description
ceip_enabled This key describes the enabling option for the VMware's
Customer Experience Improvement Program (CEIP). By default
we have ceip_enabled:false, which indicates that you are not
joining CEIP. If you prefer to participate in the VMware's CEIP
for this product, you must enable CEIP by setting
ceip_enabled:true. You may join or leave VMware's CEIP for
this product at any time.
The installer validates the values that you provide and creates a validation report. The installer also creates a
status file at the same location that contains the status of the action that you performed.
1 Download the ISO installer file for vCenter Server from the VMware product page at
http://www.vmware.com/products.
The installer ISO file name is VMware-VIM-all-6.5.0-yyyyyy.iso, where yyyyyy is the build number.
3 Prepare the JSON templates for the type of upgrade that you are performing.
4 On the virtual machine or physical server where you are upgrading vCenter Server, open the Windows
command prompt.
VMware, Inc. 18
Command-Line Installation and Upgrade of vCenter Server 6.5
The preinstall checker validates all parameters and creates a report file at
%temp%\vim-vcs-precheck-report.html without upgrading vCenter Server.
Troubleshooting
To troubleshoot the upgrade you can first review the deployment status file. If you need more information,
check the log files.
For failed installations, the status file points you to the location of the log files.
Log Files
The log files are stored in the %temp% directory. You can see the list of the most common log files:
vim-vcs-precheck-report.html
Contains the logs for the vCenter Server parent installer MSI - VMware-vCenter-Server.msi.
vminst.log
VMware, Inc. 19
Command-Line Installation and Upgrade of vCenter Server 6.5
Unattended removal of vCenter Server for Windows can be performed using the installer executable. To
perform an unattended removal, you must have access to the installer executable.
1 On the virtual machine or physical server on which vCenter Server is installed, open the Windows
command prompt.
If you have comments about this documentation, submit your feedback to: [email protected]
VMware, Inc. 3401 Hillview Ave., Palo Alto, CA 94304 www.vmware.com
Copyright © 2016 VMware, Inc. All rights reserved. This product is protected by U.S. and international copyright and intellectual property laws. VMware products are covered by
one or more patents listed at http://www.vmware.com/go/patents. VMware is a registered trademark or trademark 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.
Item: EN-002117-00
20