To find weblogic password through wlst offline
1)Run wlst
/app/oracle/ofm/wlserver/common/bin/wlst.sh
2)Executing below by giving correct domian location.
Encypted password you can get from config.xml or boot.properties
domain ="/app/oracle/user_projects/domains/user_domain/"
wls:/offline> service = weblogic.security.internal.SerializedSystemIni.getEncryptionService(domain)
wls:/offline> encryption = weblogic.security.internal.encryption.ClearOrEncryptedService(service)
wls:/offline> print encryption.decrypt("{AES}geyOxt0ChPks531bdddddddy2TIe0621qKFgV0miA=")
1)Run wlst
/app/oracle/ofm/wlserver/common/bin/wlst.sh
2)Executing below by giving correct domian location.
Encypted password you can get from config.xml or boot.properties
domain ="/app/oracle/user_projects/domains/user_domain/"
wls:/offline> service = weblogic.security.internal.SerializedSystemIni.getEncryptionService(domain)
wls:/offline> encryption = weblogic.security.internal.encryption.ClearOrEncryptedService(service)
wls:/offline> print encryption.decrypt("{AES}geyOxt0ChPks531bdddddddy2TIe0621qKFgV0miA=")
Comments
Post a Comment