vRSLCM 8.2 – change password’s vmid

  1. Connect to psql ( ssh to vRLSCM ):
/opt/vmware/vpostgres/11/bin# ./psql --host=localhost -U vrlcm

2. Select password vmid you want to replace to find password alias of that vmid:

select * from vm_locker_password where vmid='vmIdToReplace';

3. Update vmid of password aliad with vmid you want to replace with:

update vm_locker_password set vmid='vmIdToReplaceWith' where alias='passwordAlias';