Reconfigure Pending, Stuck, In Progress

vRA7 has a little habit of leaving tasks in a pending state this is how to deal with them.

https://kb.vmware.com/s/article/71246

Perhaps you aren't aware of a problem this is causing your users

Try looking for all tasks that are running or specific states using these SQL queries

    SELECT CurrentTask FROM dbo.VirtualMachine WHERE CurrentTask != NULL
    SELECT CurrentTask FROM dbo.VirtualMachine WHERE CurrentTask = 'Reconfigure failed, waiting to retry'
    SELECT CurrentTask FROM dbo.VirtualMachine WHERE CurrentTask = 'Reconfigure pending'

Clear the tasks and let the users retry

    UPDATE dbo.VirtualMachine SET CurrentTask = NULL WHERE CurrentTask = 'Reconfigure failed, waiting to retry'
    UPDATE dbo.VirtualMachine SET CurrentTask = NULL WHERE CurrentTask = 'Reconfigure pending'


Kommentarer

Populære innlegg fra denne bloggen

vRA7 to vRA8 migration - Orchestrator

vRealize Orchestrator - SSH Keys - Idea for how to easy manage multiple keys

Possible pitfall - duplicate config_admin users - Using vRSLCM as deployment engine