Spadmin Password Change

Hi,
Can please someone guide us to change admin password through iiq console.
Currently we are trying to change it through the syntax and not able to do.
set-password spadmin <new_password>

Thanks

Hi,

I don’t think there’s a command to directly change the password of an identity from the console. You could try setting is through a provisioning plan and execute that or you could change the password of spadmin in the database. It is in the spt_identity table. You can set it there unencrypted. IIQ will pick it up and encrypt it on first authentication.

For the console, this could be your plan:

<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE ProvisioningPlan PUBLIC "sailpoint.dtd" "sailpoint.dtd">
<ProvisioningPlan>
  <AccountRequest application="IIQ" op="Modify" targetIntegration="IIQ">
    <AttributeRequest name="password" op="Set" value="Secret01"/>
  </AccountRequest>
</ProvisioningPlan>

And you could execute it like this:

provision spadmin plan.xml

Regards,
Pieter.

There is no OOTB iiq command for it. You can change the password in identity warehouse, or through Manage Password quicklink.

1 Like