KB-1486 How to reset the WebLogic Administrator password
Purpose
The purpose of this article is to provide the steps to reset the Administrator password in a WebLogic installation.
Instructions
- Set up the following environment variables. They are not necessary for the process itself, but they will help you navigate. The domain in the example below is called "ClassicDomain". Remember to change the value to match your domain.
export MW_HOME=/u01/app/oracle/middleware export DOMAIN_HOME=$MW_HOME/user_projects/domains/ClassicDomain
- Shut down the WebLogic domain.
DOMAIN_HOME/bin/stopWebLogic.sh
- Rename the
datafolder.
mv $DOMAIN_HOME/servers/AdminServer/data $DOMAIN_HOME/servers/AdminServer/data-old
- Set the environment variables.
$DOMAIN_HOME/bin/setDomainEnv.sh
- Reset the password using the following command. Remember to substitute the appropriate username and password.
cd $DOMAIN_HOME/security
java weblogic.security.utils.AdminAccount <username> <password> - Update the boot.properties file located in
$DOMAIN_HOME/servers/AdminServer/security/with the new username and password. The file format is shown below:
username=<username>
password=<password> - Start the WebLogic domain.
$DOMAIN_HOME/bin/startWebLogic.sh
Affected Versions
This article applies to all versions of Appian using WebLogic as the application server.
Last Reviewed: January 2018
