The Service Console: Part 3 – ESXi

Well now. We’ve come a long way since parts 1 & 2 haven’t we? That is all well and good considering, and makes for some light background reading.  However, the game changes with ESXi, as there is no “Supported” Service Console on it’s platform.

In reality, the vmkernel runs a busybox executable. (Busybox is a linux in an executable binary sort of thing), and you can enable DropBear SSH, and the like on it. Doing this however, will likely void your warranty or support agreement, or prevent you from getting your per incident support taken care of, so I strongly recommend against it.

With that said then.  How does ESXi handle all of the communication we talked about before, how do you make it redundant, and how do you interact with ESXi in a meaningful way?  Let’s take a look at the first two, the last will be covered in a future post.

[…]

Virtualization Bookshelf – The Books Every VMware Admin Needs

Found this on Roger Lund’s site It seems that Edward L. Haletky has put together a wiki site with essential books and references for VMware Professionals. It’s pretty light so far, but he’s got an area for suggestions. VMware * Edward L. Haletky. VMware ESX Server in the Enterprise: Planning and Securing Virtualization Servers. Prentice
-> Continue reading Virtualization Bookshelf – The Books Every VMware Admin Needs

Installing VM Tools Without Reboots

Hal is amazing, he truly is. As part of this amazing, he brings us a VI Toolkit for Windows script that will install the VM tools without rebooting the VM’s. $cluster = "< >" # Enter the required cluster name $installerArgs = ‘REBOOT="ReallySuppress"’ Get-Cluster -Name $cluster | Get-VM | % { (Get-View $_).UpgradeTools_Task($installerArgs) } Pretty
-> Continue reading Installing VM Tools Without Reboots

Sunday Turtle Blogging – Are Turtles Dangerous Pets?

The FDA seems to think so. While we wondered if the FDA was simply crying ‘wolf’ on the safety of turtles as pets to cause some press to come their way, it turns out that the FDA’s claim that turtles can be unsafe as pets is completely valid.   According to an article written Consumer
-> Continue reading Sunday Turtle Blogging – Are Turtles Dangerous Pets?

5 Days – 5 PowerShell One-Liners You Can’t Live Without

5 Days now… Till? Guessed yet? If not, here are 5 PowerShell one-liner’s you cant live without. get-vm | get-snapshot | where { $_.Created -le (Get-Date).AddDays(-7)} get-vm | get-view | %{ $_.Config } | select Name,Uuid get-vm | Get-CDDrive | Set-CDDrive -Connected:$false -Confirm:$false get-template MyTemplate | new-vm -vmhost esxserver01 -name MyVM -OSCustomizationSpec MySpec get-vmhost –name
-> Continue reading 5 Days – 5 PowerShell One-Liners You Can’t Live Without

Book: Managing VMware Infrastructure With Windows PowerShell: TFM

Keep an eye out for this one early next year. I’ve been tech reviewing it since the beginning, and can tell you it’s something that you’ll want to keep next to your pillow at night. Ok, so maybe I’m the only one who does that, but it is nonetheless a good read. (I may even
-> Continue reading Book: Managing VMware Infrastructure With Windows PowerShell: TFM