How to retrieve Weblogic password if you forgot the existing password in Oracle EBS 12.2
STEP 1:
Source run env :
. EBSapps.env run
STEP 2:
Run below command to enter weblogi ccommand prompt:
example output of above command which connect to weblogic command prompt:
Initializing WebLogic Scripting Tool (WLST) ...
Welcome to WebLogic Server Administration Scripting Shell
Type help() for help on available commands
wls:/offline>
STEP 3:
Run below 3 commands in weblogic command prompt "wls:/offline>"
service=weblogic.security.internal.SerializedSystemIni.getEncryptionService(domain)
encryption=weblogic.security.internal.encryption.ClearOrEncryptedService(service)
STEP 4:
Get existing encrypted password from boot.proporties
password={AES}/hdZJHcbA6TS/fAEMi0cM2/Xg6eOO50= -> check your output similar to this encrypted password , replace below and run that command
Run the below print command to view to encrypted password
Example Command:
print "Weblogic server Admin password: %s" %encryption.decrypt("{AES}/hdZJHcbA6TS/fAEMi0cM2/Xg6eOO50=")
You will get your existing decrypted weblogic password here.
Happy Troubleshooting 👍
Please let me know in comments if you need any further help.
Follow for more articles.

0 Comments