SDDC Manager oprations may not be allowed due to System Lock held by Password Manager operation in progress. A password rotation task may have failed on individual components for various reasons.

SSH to SDDC Manager and use the following command to show any tasks that are currently locked:

psql --host=localhost -U postgres -d platform -c "select * from lock"

Delete using the associated ID:

psql --host=localhost -U postgres -d platform -c "delete from lock where id='0a5beef9-fe95-460e-8053-b3ffa9c36486'";

Leave a comment