An ABX action is stuck in a running status and the option to cancel these action runs is greyed out.
Aria Automation 8.16.2
Could occur for various reasons, but one example is that the VMs the action run is supposed to run the script on no longer exist.
The Action Run can be manually canceled in the ABX database and if desired, it can them be deleted in the UI.
Prerequisites:
You must back up all VMware Aria Automation appliances, at the same time - simultaneously for all nodes.
If you are taking the snapshots manually, you must start the snapshots of the second and the third node no more than 40 seconds after you start the snapshot for the first node.
When you back up the VMware Aria Automation appliance, disable in-memory snapshots and enable quiescing.
Steps to set the workflows as canceled:
vracli dev psql abx-db
\x
to turn on the extended view. SELECT id, name, run_state_value FROM abx_action_run WHERE id = '8a74808e9123e15801912441dabd0012';
It should return similar to this with a status of RUNNING:-[ RECORD 1 ]---+---------------------------------
id | 8a74808e9123e15801912441dabd0012
name | TEST
run_state_value | RUNNING
UPDATE abx_action_run SET run_state_value = 'FAILED' WHERE id = '8a74808e9123e15801912441dabd0012';
SELECT id, name, run_state_value FROM abx_action_run WHERE id = '8a74808e9123e15801912441dabd0012';
\q
and hit enter to quit postgres.