2026-05-22T10:19:42.064Z ERROR vcfops-bridge 2783130 [ops@4413 threadId="1002" threadName="ServerConnection on port 10000 Thread 11"] [com.vmware.vcops.bridge.server.vcf.password.task.PasswordTaskOrchestrator.remediatePassword] - Password key xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx not found.
VCF 9.0.x
This is caused by duplicate entries in the kv_vcf_password_account_data table in the VCF Operations database with same password resource key.
1. Make a note of the Password key referenced in the vcops-bridge.log
e.g. Password key xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx not found.
2. NOTE: Before proceeding bring the VCF Operations cluster offline and create snapshots of all nodes. Once done, bring the cluster online again and wait until the cluster status is stable and collecting. See KB 342576 on the process - DO NOT SKIP THIS STEP
3. SSH to the VCF Operations master node
4. Connect to the database:
su admin -c "$VMWARE_VPOSTGRES_ROOT/bin/psql -h localhost -U vcops -d vcopsdb -p 5433"
5. Run the following query:
select * from kv_vcf_password_account_data where passwordresourcekey = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx';
6. Confirm there is more than one entry associated with that passwordresourcekey
7. Once confirmed, truncate the table:
truncate table kv_vcf_password_account_data;
8. Quit the database:
\q
9. Restart the collector service on VCF Operations:
service collector restart
(NOTE: This can take a few minutes)
10. Try the remediation again.