Oracle EBS 12.2 post clone adadminsrvctl.sh start failed, Weblogic failed to start with new password, showing error invalid credentials.
CAUSE:
As part of adcfgclone.sh dualfs, we pass new weblogic password but EBS 12.2 filesystem from source still having some hardcoded passwords at some files like boot.properties.Because of these passwords not in sync, post clone adadminsrvctl.sh start will not accept both source password or new password and it fails with error INVALID credentials.
FIX:
Step 1: Find out encrypted password from
Follow steps to decrypt password from my below post URL:
https://rajoracleappsdba.blogspot.com/2026/05/how-to-retrieve-weblogic-password-if.html
Step 2: Once you get the boot.properties password decrypted then follow below steps:
Source run filesystem:
Step 3: Check and make sure no Middleware process running, terminate if any old process exists.
Step 4: Take a backup of exisitng Security Configuration file
cp DefaultAuthenticatorInit.ldift DefaultAuthenticatorInit.ldift.bak
Step 5: Sync previously decrypted password into the LDAP initialize
check latest timestamp of DefaultAuthenticatorInit.ldift to confirm its updated
Step 6: Overwrite Global Domain and Instance Credentials
clear previous adming server cache
Step 7: Create new palintest boot.properties with details of weblogic username and password
mv boot.properties boot.properties.orig
vi boot.properties
username=weblogic
password=<decrypted_weblogic_password_step1>
Step 8: Try starting admin server now
Optional:
Once admin server started successfully, you can reset password to any new value:
Rest weblogic password :
Happy Troubleshooting 👍 Please let me know in comments if you need any further help. Follow for more articles.

0 Comments