Some sections of the UI may not function without ACS functioning
The ACS Health section of System Diagnostics shows an error:
"Error when connecting to the application"
Due to the ACH Health issue, the Inventory Sync for vIDM in Aria Suite Lifecycle will also fail, displaying the following error. Additionally, Aria Automation may display a "Bad Gateway" error on the webpage.
VMware Identity Manager 3.3.x
There may be a lock here in the Postgres saas DB:
select * from ACS_DatabaseChangeLogLock;
(true and lock information shown)
Stop Horizon, the main vIDM service:
systemctl stop horizon-workspace
Log in to the PSQL DB and remove the lock:
cat /usr/local/horizon/conf/db.pwd (Note the password for the DB)
/opt/vmware/vpostgres/current/bin/psql -U horizon saas
update ACS_DatabaseChangeLogLock SET LOCKED=false, LOCKGRANTED=null, LOCKEDBY=null where ID=1;
\q
And restart the Horizon service:
systemctl start horizon-workspace
Impact/Risks:
horizon-workspace service stop/start will cause a brief downtime of vIDM, including user logins.