Take a Snapshot of the vIDM cluster using vRealize Suite Lifecycle Manager
1. Connect the the vIDM primary database via SSH connection. To validate which is the primary database use this command:
su postgres -c "echo -e 'password'|/opt/vmware/vpostgres/current/bin/psql -h localhost -p 9999 -U pgpool postgres -c \"show pool_nodes\""
2. Extract the database password
cat /usr/local/horizon/conf/db.pwd
3. connect to vPostgres database using the earlier extracted password
/opt/vmware/vpostgres/current/bin/psql -U postgres saas
4. Validate the field "inheritanceAllowed" is set to false
SELECT "inheritanceAllowed" FROM "OAuth2Client" WHERE "clientId"='acs';
5. If the field "inheritanceAllowed" is set to false the update it to true
UPDATE "OAuth2Client" SET "inheritanceAllowed"=true WHERE "clientId"='acs' AND "idOrganization"=2;
6. Exit vPostgres and the shell session on vIDM
\q
7. Open an SSH session to one of the vRA 8.1 nodes and run the deploy script
/opt/scripts/deploy.sh