Posted On March 31, 2019

VMware ESX Installation Procedures

kimconnect 0 comments
blog.KimConnect.com >> Virtualization >> VMware ESX Installation Procedures
1. Install ESX from ISO
  • Putty
  • Rufus
  • MWware-VCSA-all-6.0.0-2562643.iso
  • VMware-viclient.exe
  • KVM console (ie. Lantronix)
2. Install vCenter Appliance
  • Download vSphere client for Windows
  • Add ntp servers: pool.ntp.org, etc.
  • Set automatically start and stop with host
  • set DNS to point toward target vCenter Appliance
  • #vi /etc/hosts  (edit this file to include the IP address of the vCenter Appliance)
  • Mount ISO and run  E:\vsca\VMware-ClientintegrationPlugins-6.0.0.exe and E:\vcsa-setup.html
  • install certificate at /var/lib/vmware/vmca/root.cer
3. Install other appliances
  • OpenVPN
  • CyberPower (USP graceful shutdowns)
  • Veeam Endpoint Backup
  • OpenDNS Umbrella + integration with Active Directory (or just add DNS forwarders to AD DNS: 208.67.222.222, 208.67.220.220)
  • ScreenConnect
  • Snort
  • Squid
  • pfSense
 
Other things:
ESX change password complexity requirement:
1. Enable support mode
vim-cmd hostsvc/enable_ssh
vim-cmd hostsvc/start_ssh
vi /etc/pam.d/passwd
—–
Change
password requisite /lib/security/$ISA/pam_passwdqc.so retry=8,8,8,7,7
—–
 
2. Increase the maximum number of VMs per core (1024 cores per CPU x 2 = 2048 possible VMs)
esxcli system settings kernel set -s maxVCPUsPerCore -v 1024
esxcli system settings kernel set -s maxVMs -v 1024

Leave a Reply

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

Related Post

Hyper-V: Attach a New Virtual Disk

$vmName='TestVm' $storageLocation='\\FILESERVER06\SHAREXOXO' $newDiskSize='100GB' $dynamic=$true function createNewDisk{ param( $vmName, $storageLocation, $newDiskSize='100GB', $dynamic=$true ) $ErrorActionPreference='stop' try{ write-host…

Install AWS Command Line Interface on Windoze

Obtain AWS Access Key: Log into AWS > click on your User Name > My…

PowerShell: Create Hyper-V Guest VM From Virtual Disk (VHDX)

Part 1: Creating Hyper-V Guest VM From a Virtual Disk # createHyperVGuestVmFromDisk.ps1 # Version 0.02…