Failed to Delete Interface of Edge Gateway

Problem: In vCloud Director 8.20 I was trying to remove an org network when the following error appeared : Cannot delete organization VDC network Failed to delete interace of edge gateway Resolution Re-deploy the Edge gateway then remove the org newtork once again.  

PowerCLI – Script to Output Usage from vCloud Director

The following PowerCLI command will output all the Organization VDCS with status, CPU, memory and storage usage & provider VDC which it belongs to   1) Connect to the vCloud Director instance Connect-CIServer myuatcloud.jordansphere.co.uk -user administrator -password {password}     2) Run the following query Get-OrgVdc | Select Name,Enabled,CpuUsedGhz,CpuLimitGhz,MemoryUsedGB,MemoryLimitGB,StorageUsedGB,StorageLimitGB, ProviderVdc

Upgrade vCloud Usage Meter From 3.6.0.1 to 3.6.1

Source VCUM :  3.6.01 – 10.61.65.73 Target VCUM :   3.6.1 – 10.61.65.72   Process: 1) Deploy VCUM 3.6.1 from OVA on same network 1) Log into the source VCUM 3.6.0.1 (10.61.65.73) as root and enable SSH # service sshd start 2) Log into the target VCUM 3.6.1 (10.61.65.72) as usgmtr and migrate data # migrateum 10.61.65.73 3) Read More…

Get ESXi Version and CPU Model via PowerCLI

Script: The following script will report the name, version, server hardware and CPU model of all ESXi hosts in the vCenter.   get-vmhost | select Name, @{N='ESXi version';E={"$($_.Version) $($_.Build)"}}, @{N='ESXi Hardware';E={"$($_.ExtensionData.Hardware.SystemInfo.Vendor) $($_.ExtensionData.Hardware.SystemInfo.Model)"}}, @{N='ESXi CPU Type';E={$_.ProcessorType}}   Output:

NSX Network and Security Tab Disappeared in vCenter

Issue: I noticed the Network & Security tab was not visible in a vCenter 5.5 Web Client. This had worked previously.   Troubleshooting: Upon investigation in the NSX Manager it appeared the Lookup Service URL was showing as disconnected   Resolution: To fix the issue we had to click Edit then re-enter the credentials.   

Transfer Spooling Area is not Writable in vCloud Director

Issue: During a new install of vCloud Director 8.20 on Centos 6.9 the service failed to start properly for the first time.      Troubleshooting: I investigated log files # tail -f /opt/vmware/vcloud-director/logs/cell.log Output: Application Initialization: 'com.vmware.vcloud.common.core' 100% complete. Subsystem 'com.vmware.vcloud.ui-vcloud-webapp' started Application Initialization: 'com.vmware.vcloud.common.core' complete. Server is ready in 1:05 (minutes:seconds) Successfully handled all Read More…