HPE OneView
1753448 Members
6029 Online
108794 Solutions
New Discussion

Re: Resetting administrator password

 
SOLVED
Go to solution
BradV
Esteemed Contributor

Resetting administrator password

Using the REST API to reset the admininstrator password: 

curl --insecure \
     --header "content-type: application/json" \
     --header "X-API-Version: ${currentVersion}" \
     --data '{ "newPassword" : "newpassw0rd" }' \
     --request PUT ${OneView}/rest/users/administrator/resetPassword | jq -r "."

{
  "data": {},
  "nestedErrors": [],
  "errorSource": null,
  "recommendedActions": [
    "Retry the operation from a local client."
  ],
  "details": "",
  "message": "Request not sent from a local client.",
  "errorCode": "REQUEST_FORBIDDEN_ERROR"
}

What is considered a local client to an appliance device?

 

Apparently this really isn't possible.  Just easier to change from the gui.

2 REPLIES 2
BhaskarV
Trusted Contributor
Solution

Re: Resetting administrator password

Hi @BradV 

Not sure if you wanted to change the Administrator's password to a different one and hence used this API.
There are three APIs in all to change the Administrator's password:

1. PUT /rest/users  lets you change the password to a new one.
{
"currentPassword" : "xxxxxxx",
"password" : "yyyyyy",
"type" : "UserAndPermissions",
"userName" : "administrator"
}

2. POST /rest/users/changePassword
This one is used only during first login to the appliance, forcing the administrator to change their password from the default to something else

3. PUT /rest/users/administrator/resetPassword
This API does not require any authorization (mentioned in the API doc).
It is usually used to reset the administrator's password if the adminisrator forgets their password.
It is available for use only after getting into the appliance via maintenance console using a challenge / response.
This is hence referred to as "being local" to the appliance when invoking this API.
Sorry that the "local client" reference in the error confused you.
We'll look at improving the error message.

Let me know if you have further questions.

Regards.
Bhaskar

 


I am an HPE employee

Accept or Kudo

BradV
Esteemed Contributor

Re: Resetting administrator password

Thanks!  That helped a lot!  We have to periodically change passwords.  I let to have everything documented so that even someone not familiar with the topic can execute.  So, having a command line method to change the administrator's password helps!  :)

 

Regards,

Brad