5

I just got done installing VMware vSphere 5 Free edition on my server. I noticed when I went to install the client that there was no option to install the host update utility.

How do you update the server now?

For my company we use vCenter, but what about the stnadalone VI client?

I need to upload a package to the server from HP, its some kind of driver, I can't find the utility.

AtomicPorkchop
  • 1,975
  • 8
  • 34
  • 55
  • Sorry, I added an answer and then realized I completely misinterpreted the question. I believe you are looking for the VMware Update Manager, which I'm not sure is still available without vCenter. – Jed Daniels Sep 27 '11 at 22:26
  • yeah we use the update manager where I work, But I have a home VMware server that is running on Free ESXi, any idea how I would update that? Because I think vCLI is still only for people who have a paid version. – AtomicPorkchop Sep 30 '11 at 04:50

1 Answers1

3

Update Manager with vSphere is the preferred method. However, this can be done via the SSH command line in ESXi 5.

First, you will want to upload the zip patches needed to the local datastore.

Second, navigate to the host configuration tab. Then to the Security Profile. Under Services, click the properties link. Highlight SSH and click the Options button. Click Start and then OK out of the window.

Now you can SSH to the ESXi 5 host. If your patch was ESXi500-201109001.zip uploaded to datastore1 the command would be something like:

esxcli software vib update --depot=/vmfs/volumes/datastore1/ESXi500-201109001.zip

There is a lot of information on this at http://communities.vmware.com/people/vmroyale/blog/2011/09/15/updating-esxi-5--single-use-esxcli-how-to. You don't need to use the vCLI though, the esxcli command should be available in SSH.

Andy Shinn
  • 4,211
  • 8
  • 40
  • 55
  • esxcli/vMA is actually the ONLY way of updating ESXi 5 standalone, so this answer would have been 100% spot on if you just removed the stuff about VUM. – pauska Dec 22 '11 at 22:28