How to encrypt the domain password during the domain creation
Hi,
Looking at WLST that can be used to encrypt clear text strings as follows:
/bea103_1/user_projects/domains/base_domain>java weblogic.WLST
Initializing WebLogic Scripting Tool (WLST) ...
Welcome to WebLogic Server Administration Scripting Shell
Type help() for help on available commands
wls:/offline> es = encrypt('weblogic')
wls:/offline> print es
{3DES}tRmL7CmezaeFQmGsiaot4A==
wls:/offline>
But this suggestion will encrypt the password and give the standard out, yet our requirement is to perform this password encryption during the domain creation
and that encrypted password needs to be somewhere in domain location so we can use it when deploying the application.
Looking at WLST that can be used to encrypt clear text strings as follows:
/bea103_1/user_projects/domains/base_domain>java weblogic.WLST
Initializing WebLogic Scripting Tool (WLST) ...
Welcome to WebLogic Server Administration Scripting Shell
Type help() for help on available commands
wls:/offline> es = encrypt('weblogic')
wls:/offline> print es
{3DES}tRmL7CmezaeFQmGsiaot4A==
wls:/offline>
But this suggestion will encrypt the password and give the standard out, yet our requirement is to perform this password encryption during the domain creation
and that encrypted password needs to be somewhere in domain location so we can use it when deploying the application.
0