Takeaway: Since not everyone has clusters set up, or even have vCenter, Lauren Malhoit shows you a way to upgrade ESXi using the command line.
There is some terminology that you should be familiar with before doing this. A VIB is an ESXi software package (such as an update to 5.0 u1) that can be found in a Software Depot. A Software Depot is kind of like a repository for VIBs and Image Profiles. An Image Profile is an ESXi image that consists of VIBs. It always includes a base VIB, along with other VIBS. You can edit the image profile using image builder. These definitions were taken from the VMware website. I’ll use VIBs and my own software depot (which basically means that I uploaded the VIB to a datastore on my network, more on that later). Similar actions can be done using an Image Profile as with a VIB, but in this post I will only concentrate on the use of VIBs.
As I said before, you’ll need vCLI or the vSphere Management Assistant to update the ESXi server using esxcli commands. Here are the steps I followed to do the update:
- After downloading vCLI go to Start>>All Programs>>VMware>>VMware vSphere CLI and open it.
- Download the ESXi 5.0 Update1 Offline Bundle (VIB) from VMware.com/patchmgr/findpatch.portal
- Upload this VIB to a datastore that the host can communicate with and take note of the location to which you upload it. Leave it in the .zip format as there is no need to extract the files. This can be done using SCP, or WinSCP, or using the vSphere client.
- Now use the vSphere client to connect directly to the host and shutdown any running VMs.
- Place the host in Maintenance Mode.
- Type “esxcli –Server=[fqdn of esxi host] software sources vib list –depot=/vmfs/volumes/[name of datastore you uploaded the VIB to]/[name of update; ex: update-from-esxi5.0_5.0_update01.zip]” (without the quotes) to list the VIBs available in your depot, which is actually the datastore you uploaded your VIB to.
- Now type “esxcli –Server=[fqdn of esxi host] software vib update –depot=/vmfs/volumes/[name of datastore]/[name of update]. This may take a couple of minutes to return a response, but eventually you should get a message that says “The update completed successfully, but the system needs to be rebooted for the changes to be effective.” After that it will list the VIBs that were installed, removed, and skipped.
- Go back to the vSphere Client that is directly connected to the ESXi host and right-click on the host and select reboot. This can be done using the command line as well, but this is probably easier for us GUI lovers.
- Let that run for a few minutes. You may need to disconnect and reconnect your vSphere client to see any changes.
- When the reboot is complete you may turn on any VMs that you turned off at the beginning of this process.
- Once you are connected again, highlight the ESXi server in the vSphere client and look at the top of the main pane (above the tabs) to confirm that the build number has updated to the proper update.