vCenter

 View Only
  • 1.  VMware vSphere Update Manager Check Notification

    Posted Nov 02, 2021 09:58 AM

    After upgrade from 6.7 to 7.0U3 we have queued endless tasks 'VMware vSphere Update Manager Check Notification' in multiple vcenters. Update download is working fine.

    Is this some bug? Anybody else with this issue?

    ivanerben_0-1635846974794.png

     



  • 2.  RE: VMware vSphere Update Manager Check Notification

    Posted Nov 09, 2021 12:13 PM

    Hi, I'm running into the same issue. Found article https://kb.vmware.com/s/article/84214 but it doesn't tell how to connect to the database and if I do it the way I think it is supposed to be done (/opt/vmware/vpostgres/current/bin/psql -U postgres -d VCDB) I get an error message "ERROR: relation "vci_textfiles" does not exist"

    Hope someone can jump in



  • 3.  RE: VMware vSphere Update Manager Check Notification

    Posted Nov 09, 2021 12:19 PM

    Open support case, fix was different deletion from database, not this.



  • 4.  RE: VMware vSphere Update Manager Check Notification

    Posted Nov 23, 2021 04:57 PM

    I was able to figure out a solution based on these two articles:

    How I determined the task was depreciated, but the provided fix did not work: https://kb.vmware.com/s/article/84214 

    How I figured out how to edit the tasks directly in the DB: https://kb.vmware.com/s/article/77202 

    Step by step of what I did (I chose to disable the task, instead of deleting, just in case):

    1. Enable SSH and shell for your vcenter, and SSH into it, then access the shell:
      shell
    2. Stop the vpxd and vmware-content-library services
      service-control --stop vpxd
      service-control --stop vmware-content-library
    3. Log into the built in DB
      /opt/vmware/vpostgres/current/bin/psql -U postgres -d VCDB
    4. Verify the tasks, and find the id that matches the "VMware vSphere Update Manager Check Notification"
      select scheduledtask_id, name, enabled from vpx_scheduledtask;
    5. Update the scheduled task, and set to disabled (replace with the correct ID for the task, mine was 502, but yours is probably different)
      update vpx_scheduledtask set enabled = 0 where scheduledtask_id = 502;
    6. Verify task is now disabled
      select scheduledtask_id, name, enabled from vpx_scheduledtask;
    7. Exit DB access
      \q
    8. Start the services you turned off previously
      service-control --start vpxd
      service-control --start vmware-content-library


  • 5.  RE: VMware vSphere Update Manager Check Notification

    Posted Jan 28, 2022 01:47 PM

    Thanks for posting this. Helped me today!



  • 6.  RE: VMware vSphere Update Manager Check Notification

    Posted Feb 04, 2022 03:00 PM

    Click on the VCenter in the inventory view.

    Select: Configure

    Under Security: Scheduled Tasks

    Select Update Manager Hourly and press Remove

     


  • 7.  RE: VMware vSphere Update Manager Check Notification

    Posted May 31, 2023 12:06 PM

    After doing this:

    Click on the VCenter in the inventory view.

    Select: Configure

    Under Security: Scheduled Tasks

    Select Update Manager Hourly and press Remove

     

    Did you need to restart vcenter to then clear the check notifications? Or did you just wait? I waited overnight and i still have 26 of these "Check new notifications, Queued, VMWare vSphere Update Manager Check Notification"



  • 8.  RE: VMware vSphere Update Manager Check Notification

    Posted Nov 23, 2023 04:52 PM

    yes, you need to restart



  • 9.  RE: VMware vSphere Update Manager Check Notification

    Posted Jan 12, 2024 05:08 PM

    Hey Amir, thanks for posting this.

    Does removing Update Manager Check Notification setting (ours is currently set to "Hourly") completely remove vSphere Update Manager from checking and notifying for any available updates?  Forever?

    I would "like" to maybe receive Informational Update notifications monthly, and maybe Critical updates ASAP.  

    Is there another setting where we can check this, and still not be inundated with tons of these "Recent Tasks" getting posted?

    Thanks again,



  • 10.  RE: VMware vSphere Update Manager Check Notification

    Posted Jun 16, 2022 09:44 PM

    Fixed it for me on a brand new 7.0.3U4 install !



  • 11.  RE: VMware vSphere Update Manager Check Notification

    Posted Sep 25, 2023 11:03 PM

    Thank you... finally got rid of all those queued messages!



  • 12.  RE: VMware vSphere Update Manager Check Notification

    Posted Sep 26, 2023 07:40 AM

    Thanks for posting the solution