Wednesday, December 20, 2017

How To Configure Weblogic Username & Password In boot.properties?


After installing Weblogic need to give username and password each time you will start the Weblogic (./startWeblogic &)

To overcome this problem we have another way to configure the boot.preperties file in the security folder. Sometimes we dont have security folder available in Adminserver folder, so simply create boot.properties file with in security folder with username and password.

E.g.:

$ mkdir $DOMAIN_HOME/base_domain/servers/AdminServer/security
vi boot.properties
username=<username>
password=<password>

:wq!
$ cd $DOMAIN_HOME/base_domain/servers/AdminServer/security
$ cat > boot.properties
username=<username>
password=<password>

No comments:

Post a Comment