Code Snippet

Just another Code Snippet site

[Weblogic12] Boot identity not valid

Error : Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid.

Solution :
0: Always keep backup of files before removing it.
1: remove the boot.properties file completely from the managed server directory :

/<WLS_HOME>/servers/AdminServer/security/boot.properties 

2: remove the completely directory:

/<WLS_HOME>/servers/AdminServer/ldap 

3: Now try to start the server from the command prompt and provide the username/password used to login to the Admin Console.
4: Edit ‘startWebLogic.sh’ to add following parameters :

JAVA_OPTIONS="${JAVA_OPTIONS} -Dweblogic.management.username=<admin_username>"
JAVA_OPTIONS="${JAVA_OPTIONS} -Dweblogic.management.password=<admin_password>"


Comments are currently closed.