Tuesday, June 9. 2009
vWire goes live
Monday, June 8. 2009
Adding actions to the Virtualization EcoShell
Sunday, June 7. 2009
Xtravirt Global Virtualization Capacity Assessment Service
On Monday, June 8th Xtravirt will launch a global capacity planning service. This service will combine the knowledge/expertise from Xtravirt and the technology from Lanamark to make it easier for enterprises world-wide to get started with desktop and server virtualization.
āCapacity planning is an essential component for any organisation wishing to adopt virtualisation; whether it be desktop replacement or a server consolidation exercise,ā states Paul Davey, CTO of Xtravirt. āWe have kept the whole process as simple as possible,ā continues Paul. āCollected data, consisting of performance metrics, are securely uploaded to the Xtravirt VReady Portal, where they are analyzed to produce a summary VReady Assessment Report. This can be subsequently extended and we can quickly produce a comprehensive analysis, including full what-if scenarios, solution optimization and licensing calculations. If a client wishes to use a particular brand of server, or server SKU, they can let us know and we can feed it into the design.ā
Saturday, June 6. 2009
The newest edition of Trilead VM Explorer even has support for ESX 4i
Kodiak 0.0.4 has been released!
Kodiak version 0.0.4 release notes:
This version contains the following bug fixes:
SSL/TLS issues when connecting to VirtualCenter servers and using the SSL bypass.
This issue was composed of 3 separate cases: * Servers with self-signed certificates caused Kodiak to terminate the connection. Fixed. * Servers with an CommonName mismatch caused Kodiak to terminate the connection. Fixed. * Servers that would demand a client certficiate would terminate the connection when the TLS/SSL handshake was incomplete (i.e. lacking a certificate).
These 3 issues have been fixed, and their respective overrides may be accessed by using the SSL preferences panel.
Kodiak exits on hitting the "Q" key on linux when attempting to login. The "Cmd+q/Alt+Q" rapid menu handler has been temporarily removed while we troubleshoot this. When connected to more than one server, Kodiak's maps overlap and become cluttered/difficult to manage. This has been fixed...Maps will now automatically move themselves to make space for new connections.
Just tested, anyone else gets an Error #2032?
Friday, June 5. 2009
Join me at the vSphere ICM training in Nieuwegein
At July 6th (week 28) I will deliver one of the first VMware vSphere Install, Configure and Manage courses. There are still some seats left, so Iāll be very glad if you can join me at this hands-on training course which explores installation, configuration, and management of VMware vSphere. Upon completion of this course, you can take the examination to become a VCP4. The course is based on ESXi 4.0, ESX 4.0, and vCenter Server 4.0.
You can use this link to register, please refer to action code āesloofā and youāll get a discount of ā¬100,00.
http://www.globalknowledge.nl/Default.aspx?page=461&coursecode=VSICM
Thursday, June 4. 2009
Carterās PowerCLI webinar brings us the Ready Time Monitor
This morning I replayed the June 2009 PowerCLI Webinar. Carters Shanklinās WebEx session is awesome, he demoed a well written series of PowerShell scripts. With one of his scripts youāre able to collect the %RDY time statistics for all your Virtual Machines. The most common cause of high ready time is trying to get too much work out of too little hardware. Often this condition is observable when ready time is high and total host CPU utilization is also very high. The only fix for this is to back off the load on the system. VMs should be migrated off or processor resources should be increased. I combined Carterās script with a new feature in PowerShell 2.0, the Out-GridView which displays the ready timeĀ information in a real cool Data Grid.
Get-VM
| Select Name, @{ N="Summation"; E={($_ | Get-Stat -stat cpu.ready.summation -maxsamples 1 -intervalmins 5 | select -first 1).Value} } | Sort -property Summation -Descending | Out-GridView