Cannot trigger new log bundle creation in Aria Suite Lifecycle as a logbundle request is already in progress
search cancel

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.
  1. Connect to the Aria Suite Lifecycle appliance via ssh with the root user.
  2. Connect to the database: 
    /opt/vmware/vpostgres/11/bin/psql -U postgres -d vrlcm -h localhost
  3. Review any open log bundle request:
    SELECT vmid, name, lastupdatedon, value FROM vm_lcops_settings where name='logbundledownload' ORDER BY lastupdatedon;
  4. Review and extract the vmid of the latest request where value column is not empty
  5. Update the request to set value column as empty
    UPDATE vm_lcops_settings set value='' WHERE vmid='<vmid from Step 3>';
  6. Login to the Aria Aria Suite Lifecycle UI and valdiate log bundle generation now succeeds.