Despite the vCenter certificates already having been confirmed as valid, or having been regenerated, vSphere Client still continues to display certificate status alarms, when there are any expired or about to expired certificates contained in either BACKUP_STORE or BACKUP_STORE_H5C in VECS
This article provides steps for automating the clean-up of expired Certificates from the BACKUP_STORES and BACKUP_STORE_H5C in the VCenter Server Appliance.
# for i in $(/usr/lib/vmware-vmafd/bin/vecs-cli store list); do echo STORE $i; /usr/lib/vmware-vmafd/bin/vecs-cli entry list --store $i --text | egrep "Alias|Not After"; done
# chmod +x clean_backup_stores.sh
./clean_backup_stores.sh
Have you taken powered off snapshots of all PSC's and VCSA's within the SSO domain(Y|y|N|n)
-bash: ./clean_backup_stores.sh: /bin/bash^M: bad interpreter: No such file or directory.
# sed -i -e 's/\r$//' clean_backup_stores.sh
# service-control --stop --all && service-control --start --all