Quantcast
Channel: Online DBA Support
Viewing all articles
Browse latest Browse all 35

How to change web-logic password if it is lost or forgotten in EBS 12.2.x

$
0
0

We have tried changing weblogic password from command line considering the password is lost or forgotten Oracle EBS R12(12.2.x)

Actions to be taken :

    1. Shut down all running services (adstpall.sh), although the password for  Admin server is unknown try to kill the pid’s from the server.
    2. Back up these folders, then delete them:
EBS_DOMAIN_HOME/security/ DefaultAuthenticatorInit.ldift
EBS_DOMAIN_HOME/servers//data/ldap
EBS_DOMAIN_HOME/servers//security/boot.properties
EBS_DOMAIN_HOME/servers//data/nodemanager/boot.properties
    1. Set up a new environment to change the WLS AdminServer password.
./setDomainEnv.sh
    1. Do NOT source the application tier environment file.
    2. Run the following commands:
cd EBS_DOMAIN_HOME/security
java weblogic.security.utils.AdminAccount wls_adminuser(weblogic) wls_admin_new_password(yourenewpass) .
OR
java -cp /apps/bea11g/weblogic11g/server/lib/weblogic.jar:$CLASSPATH  weblogic.security.utils.AdminAccount newUser newPass1 .
    1. Note: Do not omit the trailing period (‘.’) in the above command, to specify the current domain directory.
    2. Change the password in boot.properties of AdminServer
EBS_DOMAIN_HOME/servers/AdminServer/security/boot.properties
username = weblogic
password = weblogic123
  1. Start all the services using adstrtal.sh

Viewing all articles
Browse latest Browse all 35

Trending Articles