I came across this wonderful resource page – Virtualizing Business Critical Enterprise Applications which talks about the successful cases and best practice to deploy the enterprise applications on top of vSphere, such as Exchange, SharePoint, SQL Server, Oracle DB. This is exactly what I need, as I am currently working on a big scale deployment … Continue reading Virtualizing Business Critical Enterprise Applications
Tag: VMware
VMware’s Best Practice/Recommendation for Extents
VMFS-5 has increased the VMDK file size limits to 2TB, and allows the extents up to 64 TB. However, using Extent is not recommended by VMware unless you absolutely have to use it. Read more details in this article: http://blogs.vmware.com/vsphere/2012/02/vmfs-extents-are-they-bad-or-simply-misunderstood.html
PowerShell: Using Credential File For Connect-VIServer
To run a scheduled PS script against the vCenter server, you either hard code the credential in your script or use the credential file. Needless to say that credential file is better in terms of security, as the password is encrypted in the file. Two steps to complete: 1) Create a credential file. Add-PSSnapIn VMware.VimAutomation.CoreNew-VICredentialStoreItem … Continue reading PowerShell: Using Credential File For Connect-VIServer
PowerShell: Use Connect-VIServer In Your Script
To use ‘Connect-VIServer’ cmdlet in your PowerShell script. You have to follow two steps: 1) Install VMware PowerCLI in your machine. It will register itself in PowerShell during the installation. 2) Use ‘Add-PSSnapIn VMware.VimAutomation.Core’ to add the registered PowerShell VMware Snapin to the current session.
Moving VM to Folder in vCenter
To make things more organized in vCenter, I use folders to categorize the servers with the same functions together. The folders can be Production with subfolders SQL server, Linux server … But somehow, two servers refused to move. Everything looks fine, they just did not want to move to a new folder. After being frustrated … Continue reading Moving VM to Folder in vCenter