VMware vCenter Server 7.0.x
VMware vCenter Server 8.0.x
Role_ID value is changed for administrator in VCDB
1.Take a snapshot / backup of the vCenter.(Take Offline snapshots if vCenter servers are connected in linked mode)
2. Connect to vCenter database (VCDB)
/opt/vmware/vpostgres/current/bin/psql -d VCDB -U postgres3. Run the command,
select * from vpx_access;4. Changed the role ID to default value -1
update vpx_access set role_id = -1 where role_id = 10;5. Restart vpxd service on the vCenter
service-control --restart vpxd