Onboarding Plan Stuck in "In-Progress" State due to Onboarding Timeout Issues in Aria Automation 8.x
book
Article ID: 368287
calendar_today
Updated On:
Products
VMware Aria SuiteVMware vRealize Automation 8.x
Issue/Introduction
The onboarding plan remains in the "In-Progress" state despite all VMs being successfully onboarded.
Onboarding plan shows as "executing," for the VMs which displays "pending" status.
This situation typically occurs when the onboarding process times out, preventing the status from changing to "FAILED" and instead leaving it in the "EXECUTING" state.
Environment
Aria Automation 8.x
Resolution
Take a snapshot of all the Aria automation nodes.
SSH into one of the Aria Automation appliance nodes in your cluster.
Execute the following command to open the relocation database: vracli dev psql relocation-db
Turn on expanded display : \x
Provide the name of the affected onboarding plan by running the following query: select * from plan where name = ‘NAME OF PLAN’;
Update the status of the specific onboarding plan to 'OK': update plan set status=‘OK’ where name = ‘NAME OF PLAN’;
Execute the select query to ensure the status has been updated: select * from plan where name = 'NAME OF PLAN';
Exit the database command-line interface : \q
Login to Aria automation portal to check the status.
You should now be able to add/remove the VM machines in the plan.