Cannot trigger new log bundle creation in Aria Suite Lifecycle as a logbundle request is already in progress
book
Article ID: 314877
calendar_today
Updated On:
Products
VMware Aria Suite
Issue/Introduction
Symptoms:
- Trying to generate a Aria Suite Lifecycle is not possible as a logbundle is already in progress.
- Reviewing the history of all Requests there is no log bundle request existing.
Environment
VMware vRealize Suite Lifecycle Manager 8.x
Cause
This issue can occur if the log bundle request never completed and was deleted.
Resolution
To recover the Aria Suite Lifecycle database needs to be modified, before proceeding please take a Backup of the Aria Suite Lifecycle appliance.
- Connect to the Aria Suite Lifecycle appliance via ssh with the root user.
- Connect to the database:
/opt/vmware/vpostgres/11/bin/psql -U postgres -d vrlcm -h localhost
- Review any open log bundle request:
SELECT vmid, name, lastupdatedon, value FROM vm_lcops_settings where name='logbundledownload' ORDER BY lastupdatedon;
- Review and extract the vmid of the latest request where value column is not empty
- Update the request to set value column as empty
UPDATE vm_lcops_settings set value='' WHERE vmid='<vmid from Step 3>';
- Login to the Aria Aria Suite Lifecycle UI and valdiate log bundle generation now succeeds.
Feedback
thumb_up
Yes
thumb_down
No