Posted On March 31, 2019

Install vCenter

kimconnect 0 comments
blog.KimConnect.com >> Virtualization >> Install vCenter
– Download VMware-VCSA-all-6.0.0-2656757.iso
– Download VirtualCloneDrive
– Mount VCSA as virtual CD ROM
– Disable antivirus (to unlock hosts file) on local workstation
– Install VMWare-ClientIntegationPlugin-6.0.0.exe from mounted virtual CD ROM
– Create DNs record (vcenter.domain.local) & reserve static IP address for vcenter
– Run vcsa-setup.html: use IP / FQDN from prior step as static networking settings, 0.pool.ntp.org,1.pool.ntp.org,2.pool.ntp.org,3.pool.ntp.org as ntp

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Move Virtual Machine Storage Using VMM

# moveVmStorageUsingVmm.ps1 # Version 0.01 $vmNames=@( 'TESTVM0001', 'TESTVM0002', 'TESTVM0003' ) $storageLocations=@( 'C:\ClusterStorage\BLOB001', 'C:\ClusterStorage\BLOB002', 'C:\ClusterStorage\BLOB003' )…

Linux: How to Manually Create a USB Bootable Drive for ESXi

Step 1: Find the USB mount root@kimlinux:/home/kim# ls /dev/s*/dev/sda /dev/sdb1 /dev/sdb3 /dev/sdc1 /dev/sg1 /dev/snapshot /dev/stdin/dev/sdb…

PowerShell: Connect to Azure CLI

# Set PSGallery as trusted to bypass promptsSet-PSRepository -Name 'PSGallery' -InstallationPolicy Trusted -WarningAction SilentlyContinue #…