How to install VMware vSphere Update Manager 5.5

If you don’t already know, VMware Update Manager (aka, VUM) is a tool which allows you to easily automate patching and upgrading VMware hosts as well as virtual machine hardware and VMware tools. It’s a wonderful tool and makes upgrading and patching so much easier and allows you to quickly see how compliant/up-to-date your environment is with the built in pie graph.

Recently we had some pretty serious array issues which corrupted the VUM database taking Update Manager down. Since we was going to have to rebuild Update Manager I opted to move from Windows Server 2008 to Windows Server 2012, in the steps below I’ll document step by step how to install VMware Update Manager 5.5 on Server 2012 and a separate database.

Creating the VMware Update Manager database

Since we already have our vCenter SQL database on it’s on VM (not installed on the vCenter server), I’m going to use the same database server to also run the VMware Update Manager database as well.

To automate the creation of the database I used ran the following script on the database server, be sure to replace “domain\service-account-name” with your own domain and service account username.

/* Creates VMware Update Manager database. */
/* Change login name to VUM service account */

EXEC('CREATE LOGIN [domain\service-account-name]FROM WINDOWS')

USE MSDB
EXEC sp_grantdbaccess 'domain\service-account-name'
EXEC sp_addrolemember db_owner, 'domain\service-account-name'

USE master
create database "VUM"
on
( name = 'VUM',
filename = 'D:\MSSQL\Data\VUM.mdf',
size = 250MB,
filegrowth = 25MB )
log on
( name = 'VUM log',
filename = 'D:\MSSQL\Logs\VUM.ldf',
size = 25MB,
filegrowth = 2MB )
COLLATE SQL_Latin1_General_CP1_CI_AS;

EXEC('ALTER AUTHORIZATION ON DATABASE::"VUM" TO [domain\service-account-name]')

GO

That should create the databases needed with the correct permissions. The only thing you may want to change is set the database recovery from “Full” to “Simple”, otherwise that’s it on the database server.

Creating the VUM 32-bit DSN

First thing’s first, make sure your VUM service account is a local admin on your new Server 2012 virtual machine. Next, before I could get started configure the 32-bit DSM connection I first had to install the SQL Server Native Client which I quickly installed by mounting the SQL Server ISO to my new VUM virtual machine and went to the folder: 1033_enu_lp\x64\setup\x64 and ran the file: sqlncli.msi.

Now lets setup the DSN…

  1. Open the 32-bit ODBC Manager which is located here:
    C:\Windows\SysWOW64 named odbcad32.exe
  2. Click on the System DSN tab and then click on Add.
    Add ODBC step 1
  3. From the list of data sources, select SQL Server Native Client and click on Next.
    Add ODBC step 2
  4. Give the new data source a name, description and lastly enter the name of your SQL database server and click Next.
    Add ODBC step 3
  5. Leave the default “with Integrated Windows Authentication” selected and click on Next
    Add ODBC step 4
  6. From the default database drop down menu select the name of your VUM database and click Next.
    Add ODBC step 5
  7. Finish the configuration and now we’re ready to actually install VUM!
    Add ODBC step 6

Installing VMware Update Manager

For this install I used the latest ISO currently available at the time of writing this (VMware-VIMSetup-all-5.5.0-1750795-20140201-update01.iso).

  1. Mount the ISO image to your VM which should start the VMware vCenter Installer, select “vSphere Update Manager” and click on Next
    vSphere installer
  2. Select the language of your choice and click on Ok.
    Installing vSphere Update Manager step 1
  3. Start the install wizard by clicking Next.
    Installing vSphere Update Manager step 2
  4. Accept the license agreement.
    Installing vSphere Update Manager step 3
  5. I want VUM to download updates right away and so I left the default “Download updates from default sources immediately after installation” checked.
    Installing vSphere Update Manager step 4
  6. VUM needs to register with vCenter, so enter the vCenter IP or Name along with any username and password that has administrator access on vCenter.
    Installing vSphere Update Manager step 5
  7. Since we’ve opted to use a standalone SQL server for this install, select “Use an existing supported database” and use the previously configured DSN from the drop down (VUM).
    Installing vSphere Update Manager step 6
  8. Summary of database configuration.
    Installing vSphere Update Manager step 7
  9. Enter the IP or name of your vCenter server, I’ve used the FQDN name in this case.
    Installing vSphere Update Manager step 8
  10. Neither of my drives on the VUM VM have have 120GB or more free space and thus the installer shows this warning message. It’s okay, just click Ok to continue.
    Installing vSphere Update Manager step 9
  11. I added an 80GB drive to the VM and changed the destination folder to the secondary drive. You don’t have to change the destination if you don’t want to. Click Next.
    Installing vSphere Update Manager step 10
  12. To start the installation click on Install
    Installing vSphere Update Manager step 11
  13. That’s it, click on Finish.
    Installing vSphere Update Manager step 12

Now that the install for Update Manager is complete, log into the vSphere client and confirm the “VMware vSphere Update Manager” plugin is listed.

vSphere Update Manager plugin installed

You’ve now installed vSphere Update Manager and are ready to start upgrading and patching your hosts. If you need help with that I’ve already posted about that earlier in my Upgrade ESXi host to ESXi 5.5 using VMware Update Manager 5.5 post.

Enjoy!

Similar Posts

  • My VMware View Windows 7 Optimization Guide

    These are the few steps I do when creating a new "Golden" image. Luckily I don’t have to do these steps all the time as I’ll create the "Golden" image when there is a new upgrade such as when we went from View 4.6 to View 5.0.1. I like to have a new fresh machine using new virtual hardware from the start. You could certainly just upgrade the virtual hardware on the "Golden" image, I just prefer to start clean.

    At any rate, here’s my list. Hopefully someone might find it somewhat useful and maybe even others can improve upon it.

    Preparing a new virtual machine

    1. Create New Virtual Machine – FILE > NEW > VIRTUAL MACHINE (CTRL+N)
    2. Under Configuration select CUSTOM.
    3. Select a Name, Folder, Host, Cluster, and Storage.
    4. Under Guest Operating System select Windows and then Windows 7 32bit under the Version drop down.
    5. Select which Network (VLAN) and under Adapter select VMXNET 3.
    6. Configure disk size to 30GB THIN provisioned.

    Read More “My VMware View Windows 7 Optimization Guide”

  • How to upgrade ESXi 6.5 to ESXi 6.7

    VMware released ESXi 6.7 a little while ago, but it’s only been here recently have I started deploying it in my home and work lab environments. Below are two ways to easily upgrade your ESXi 6.5 hosts to ESXi 6.7 using the command line or by using the VMware ESXi offline bundle.

    Read More “How to upgrade ESXi 6.5 to ESXi 6.7”

  • Fix VMware VCSA /storage/log filesystem out of disk space

    This morning I ran into an issue where users were reporting the production VCSA 6.0 was not allowing them to connect into the web or thick client. Another administrator rebooted the VCSA which seemed to work only briefly. I then logged into the VCSA web management (https://<VCENTER_IP>:5480) and noticed the following health status right away:

    The /storage/log filesystem is out of disk space or inodes

    vcsa /storage/log full

    Read More “Fix VMware VCSA /storage/log filesystem out of disk space”

  • VMware Workstation updated to 9.0.2

    VMware is released a maintenance update for VMware Workstation to version 9.0.2. The update is available for free for all VMware Workstation 9.x customers.

    Mostly just bug fixes and a few improvements, here are a few highlights:

    • Fedora 18 supported as a guest operating system
    • Windows 8 host permissions issues fixed
    • VMware Tool updated to support the latest Linux kernels
    • Improved general host resource management
    • OVF Tool has been updated to version 3.0.2
    • Virtual machine sharing improvements
    • Memory leak which impacted Windows hosts has been fixed

    Read More “VMware Workstation updated to 9.0.2”

  • VMware ESXi 5 home lab upgrade

    In the past I’ve been using a single server to run my VMware ESXi home lab. it was slow, old, big and loud. I’ve been meaning to upgrade my home lab for a while and just never got around to it, until now! When looking for new hardware I wanted the servers to be as compact as possible, quiet, and low energy usage as possible while still having some horsepower.

    I debated on going the whitebox solution as I build all my own desktops anyway, I also looked at several other solutions such as the HP ML310e server, Shuttle XH61V barebones machine, but ultimately decided to go with two Intel NUC i5’s.

    Intel NUC i5 and 16GB ram

    Intel NUC i5 DC53427HYE Features:

    • Uses very little energy
    • Completely quiet
    • Supports up to 16GB RAM
    • A dual core CPU that scores nearly 3,600 in PassMark benchmarking
    • Includes vPro which allows me to easily run both NUC’s headless
    • Extremely small, nearly 4 1/2″ inch square footprint

    Read More “VMware ESXi 5 home lab upgrade”

  • VMware VCP5-DCV Delta Re-certification Exam

    VMware VCP DCV

    Looking to renew your VCP before the March 10th 2015 expiration date? Then the new VMware VCP5-DCV Delta (Exam Code VCP550D) is a cheaper way to renew your VCP without taking the full on exam or not just ready to tackle the VCAP. The new exam covers new material between the vSphere 5.0/5.1 and vSphere 5.5 exams – looking the the blueprints, most noticeably VSAN.

    While you still have to schedule the exam through Pearson VUE, you don’t have to take the course at a testing center and instead can take it online from any device!

    Read More “VMware VCP5-DCV Delta Re-certification Exam”

Leave a Reply

Your email address will not be published. Required fields are marked *

2 Comments