Recovering a Password on Windows
c:
cd <TRAVERSE_HOME>
utils\databaseUtil.pl --action export --file provdb.xml
This creates a file named provdb.xml
which you can edit to reset the password.
superuser
entry and remove the entire des
prefix along with the encrypted password. Then, enter a cleartext password (with no des
prefix).<loginName code="Ansi" lang="en">superuser</loginName>
[...]
<password code="Ansi" lang="en">{des}xyzabc</password>
replace with:
<password code="Ansi" lang="en">password</password>
utils\databaseUtil.pl --action import --file provdb.xml
y
to replace the existing database.Recovering a Password on UNIX
su
or sudo
commands to obtain root permissions.cd <TRAVERSE_HOME>/
/etc/traverse.init stop
utils/databaseUtil.pl --action export --file /tmp/provdb.xml
This stops the Traverse components, and then creates a file named provdb.xml
which you can edit to reset the password.
superuser
entry and remove the entire des
prefix along with the encrypted password. Then, enter a cleartext password (with no des
prefix).<loginName code="Ansi" lang="en">superuser</loginName>
[...]
<password code="Ansi" lang="en">{des}xyzabc</password>
replace with:
<password code="Ansi" lang="en">password</password>
utils/databaseUtil.pl --action import --file /tmp/provdb.xml
y
to replace the existing database.