By default passwords are encrypted and stored in the Tomcat
user database. You can change the configuration to store the passwords
in a clear text file.
Procedure
- Set Apache Tomcat Users' password digest (tomcat.digest.password)
property to false:
- In the Admin Web UI, click the Server tab
- In the Configuration pane, click Advanced
Properties.
- In a Tomcat Users' Password Digest field,
set the property value to False.
- Click Save.
- Modify jazz/server/tomcat/conf/tomcat-users.xml file
to set passwords to clear text versions.
- Modify jazz/server/tomcat/conf/server.xml and
change the Realm definition.
From:
<Realm className="org.apache.catalina.realm.UserDatabaseRealm"
resourceName="UserDatabase"
digest="SHA-1"
digestEncoding="UTF-8"/>
To
<Realm className="org.apache.catalina.realm.UserDatabaseRealm"
resourceName="UserDatabase"/>