Friday, December 13, 2019

How to reset Weblogic Server Password



$DOMAIN_HOME/bin/stopWebLogic.sh

->Rename the data folder.

$ mv $DOMAIN_HOME/servers/AdminServer/data $DOMAIN_HOME/servers/AdminServer/data-backup

Set the environment variables.
$  $DOMAIN_HOME/bin/setDomainEnv.sh


$ cd $DOMAIN_HOME/security
$ java weblogic.security.utils.AdminAccount weblogic Yellow292scotch .

java weblogic.security.utils.AdminAccount <weblogic> <Yellow292scotch>


Update the “$DOMAIN_HOME/servers/AdminServer/security/boot.properties” file with the new username and password. The file format is shown below.
username=weblogic
password=Yellow292scotch


Start the WebLogic domain.
$ $DOMAIN_HOME/bin/startWebLogic.sh

nohup $DOMAIN_HOME/bin/startWebLogic.sh > $DOMAIN_HOME/servers/AdminServer/logs/AdminServer.out &


No comments: