Vcenter CLI Linux Json Install 

For my documentation : Example Json File for VCenter 8 Install with DHCP 


command to install .

my Directory with the Installer ( VCenter Iso mount ) : /mnt/iso/vcsa-cli-installer/lin64

( previous mount : sudo mount -t iso9660 -o loop /tmp/VMware-VCSA-all-8.0.2-22617221.iso /mnt/iso )


Install command :

./vcsa-deploy install --accept-eula --acknowledge-ceip /home/manfred/v-center-install/install.json


My JSON File :


{

  "__version": "2.13.0",

  "new_vcsa": {

    "esxi": {

      "hostname": "192.168.178.93",

      "username": "root",

      "password": "password",

      "deployment_network": "VM Network",

      "datastore": "93nvm3"

    },

    "appliance": {

      "thin_disk_mode": true,

      "deployment_option": "tiny",

      "name": "vCenter-2"

    },

    "network": {

      "ip_family": "ipv4",

      "mode": "dhcp"

    },

    "os": {

      "password": "password",

      "ntp_servers": "time.google.com",

      "ssh_enable": true

    },

    "sso": {

      "password": "password",

      "domain_name": "vsphere.local"

    }

  },

  "ceip": {

     "description": {

          "__comments": [

                "++++VMware Customer Experience Improvement Program (CEIP)++++",

                "VMware's Customer Experience Improvement Program (CEIP) ",

                "provides VMware with information that enables VMware to ",

                "improve its products and services, to fix problems, ",

                "and to advise you on how best to deploy and use our ",

                "products. As part of CEIP, VMware collects technical ",

                "information about your organization's use of VMware ",

                "products and services on a regular basis in association ",

                "with your organization's VMware license key(s). This ",

                "information does not personally identify any individual. ",

                "",

                "Additional information regarding the data collected ",

                "through CEIP and the purposes for which it is used by ",

                "VMware is set forth in the Trust & Assurance Center at ",

                "http://www.vmware.com/trustvmware/ceip.html . If you ",

                "prefer not to participate in VMware's CEIP for this ",

                "product, you should disable CEIP by setting ",

                "'ceip_enabled': false. You may join or leave VMware's ",

                "CEIP for this product at any time. Please confirm your ",

                "acknowledgement by passing in the parameter ",

                "--acknowledge-ceip in the command line.",

                "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"

            ]

     },

     "settings": {

            "ceip_enabled": false

     }

  }

}