Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To change the default admin password, log in to the management console with admin/admin credentials and use the "Change my password" option. After changing the passwordcredentials, do the following:

...

change the same in the <APIM_HOME>/repository/conf/

...

user-

...

mgt.xml file:

Code Block
languagexml

...

<UserManager>
   <Realm>
      <Configuration>
          ...
          <AdminUser>
             

...

<UserName>admin</UserName>                  
  

...

 

...

  

...

    

...

    

...

<Password>admin</Password>
          </

...

AdminUser>
  

...

    

...

...
   

...

</

...

Realm>
</

...

UserManager>
Tip

Do you have any special characters in passwords?

If you specify passwords inside XML files, take care when giving special characters in the user names and passwords. According to XML specification (http://www.w3.org/TR/xml/), some special characters can disrupt the configuration. For example, the ampersand character (&) must not appear in the literal form in XML files. It can cause a Java Null Pointer exception. You must wrap it with CDATA (http://www.w3schools.com/xml/xml_cdata.asp) as shown below or remove the character:

 

Code Block
languagexml
<Password>
    <![CDATA[xnvYh?@VHAkc?qZ%Jv855&A4a,%M8B@h]]>
</Password>

...