| Note: Please ensure to secure a snapshot of the Fleet Management appliance. |
Open the Fleet Management UI and navigate to the Certificates page where the stuck CSRs reside.
Press F12 (or right-click and select Inspect) to open the browser's Developer Tools.
Switch to the Network tab.
Click on the first problematic CSR in the web interface.
In the Developer Tools Network tab, click on the API request that populates.
Review the Response or Preview pane to locate the vmid string for that specific CSR. Note this ID down.
Repeat this process for all problematic CSRs.
SSH into the Fleet Management Appliance as the root user.
Connect to the internal database using the appliance's DB shell command.
./psql -U postgres -d vrlcm
<YOUR_VMID> with the IDs you gathered in Step 2:DELETE FROM vm_locker_appliance_csr WHERE vmid = 'vmid';
DELETE FROM vm_locker_csr WHERE vmid = 'vmid';
Refresh your Fleet Management UI to confirm the CSRs are completely removed from the inventory.