简体   繁体   中英

suppress password prompt on weblogic server startup

How do we suppress password prompt on weblogic server startup?. The password prompt comes while starting production mode of weblogic server. At this time user should enter the username and password of weblogic server.

So it is giving problem on

  • automatic start weblogic when server is rebooted.
  • to execute wlst command .

If you are not using nodemanager to startup the servers:

  1. Create a file named boot.properties at $domain_home/security/boot.properties with the following content
  2. username=<USERNAME> password=<PASSWORD>
  3. Start the server now and it will automatically pickup the username/password from this file. The server will also encrypt the file.
  4. Reference

If you are using nodemanager to startup the servers:

  1. You need to enroll the server to the nodemanager and the boot.properties file will be automatically created at $domain_home/servers/server_name/data/nodemanager/
  2. Reference

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM