This is a known issue affecting VMware vRealize Automation versions 7.5 and 7.6.
Currently, there is no resolution.
Note: This issue is NOT present on 8.x versions as the logging mechanisms are different.
Workaround:
To work around this issue, update the log-bundle commands that are in PROCESSING or QUEUED state to FAILED or COMPLETED. This will unblock the UI.
- Open an SSH session to the primary appliance.
- Connect to the Postgres database by running the commands:
su postgres
psql -d vcac
- Run the following queries:
update cluster_commands set status = 'FAILED' where type = 'log-bundle' and status='PROCESSING';
update cluster_commands set status = 'FAILED' where type = 'archive-bundles' and status='QUEUED';
- Ensure to set the VA timezone on all VAs to Etc/UTC from the VAMI settings.
- Ensure you do not have any large files, such as .hprof or .sql dumps in the logs partition to reduce the log bundle generation times.