VMware Cloud Community
RanjnaAggarwal
VMware Employee
VMware Employee

Reset Configurationadmin account password in vRA 7

How can i reset the password of configurationadmin account?

Regards, Ranjna Aggarwal
0 Kudos
5 Replies
GrantOrchardVMw
Commander
Commander

It's not in the UI, you can submit an API request to handle this:

PUT to https://{{vra-fqdn}}/identity/api/tenants/vsphere.local/principals/username@vsphere.local

{

  "firstName": "Local",

  "lastName": "Admin",

  "emailAddress": "ladmin@corp.local",

  "description": "Local Admin",

  "locked": false,

  "disabled": false,

  "password": {{newPassword}},

  "principalId": {

    "domain": "vsphere.local",

    "name": "localadmin"

  },

  "tenantName": "vsphere.local",

  "name": "Local Admin"

}

Grant http://grantorchard.com
0 Kudos
RanjnaAggarwal
VMware Employee
VMware Employee

please guide me that how to do this step by step.

Regards, Ranjna Aggarwal
0 Kudos
Craig_G2
Hot Shot
Hot Shot

Similar question was asked here:

Re: Change password of local vra user

If PowerShell is more familiar to you then my response may make things easier for you.

Edit: link

0 Kudos
RanjnaAggarwal
VMware Employee
VMware Employee

Is there any other way of doing this?

Regards, Ranjna Aggarwal
0 Kudos
fifthman_roshan
Enthusiast
Enthusiast

Same issue here. Am sure about the password that was set, however it is not allowing to log in to the console using configurationadmin account.

tried to use the mentioned url.. getting 404-authentication required error in IE.

Any other way to reset the password for this user... ?

Its a fresh install of vRA7.

0 Kudos