从10.3.2之后boot.properties文件不再位于域目录下,而是每个实例目录下的security目录下.
以下来自Metalink:
WebLogic 10.3.2 Servers Are Not Reading boot.properties File Inside DOMAIN Directory [ID 1069324.1] | ||
修改时间 07-JUL-2011 类型 PROBLEM 状态 PUBLISHED |
In this Document
Symptoms
Cause
Solution
References
Applies to:
Oracle Weblogic Server - Version: 10.3.2 to 10.3.3
Oracle Weblogic Server - Version: 10.3.2 to 10.3.2]
Information in this document applies to any platform.
This document is application for WebLogic 11gR1 10.3.2
Symptoms
This document provides information about using boot.properties in WebLogic 11gR (10.3.2) or later.
Placing the boot.properties file under the domain file no longer allows starting the server without login.
In earlier versions (before 10.3.2) of WebLogic, one can put boot.properties file with plain text of username/password under the domain folder to avoid having to input username/password every time during a server startup. And the original plain text would also be encrypted after the startup.
Cause
This behavior is not seen by default from 10.3.2 due to design change. If you would like to put boot.properties file somewhere to startup weblogic server without prompting for username/password, there are two choices.
Solution
First, use -Dweblogic.system.BootIdentityFile option inside the WebLogic start script to set the location of the boot.properties file (The file name is customizable).
Second, if -Dweblogic.system.BootIdentityFile is not specified, by default the server instance during bootup process will look for boot.properties file inside DOMAIN_HOME/servers/X/security directory. ( X is the server name).
(这里metalink写成了DOMAIN_HOME/servers//security directory. ( is the server name).
本人作了修改)
For more details on how to use the parameter -Dweblogic.system.BootIdentityFile, please refer to Oracle Fusion Middleware Managing Server Startup and Shutdown for Oracle WebLogic Server 11g Release 1 (10.3.1), Chapter 2: Starting and Stopping Servers, Section: "How a Server Uses a Boot Identity File at Startup" (click here).
相关推荐
个简介暂介绍章分类全部博(290)web服务器(3)资料(3)影(1)络情(10)未分配的博(132)章存档2016年(5)2013年(1)2012年(6)20
- 这个路径下的`security`目录是存储`boot.properties`文件的标准位置。 2. **创建boot.properties文件**: - 使用文本编辑器(如Notepad++或Visual Studio Code)在指定路径下新建一个名为`boot.properties`的...
4. 备份adminserver下的boot.properties文件,例如:cd /Middleware/user_projects/domains/bifoundation_domain/servers/AdminServer/securitycp boot.properties boot.properties.bak。然后编辑boot.properties...
#### 一、理解`boot.properties`文件 `boot.properties`是Weblogic服务器用来存储管理员账户(默认为`weblogic`)和密码的文件,位于`$DOMAIN_HOME`目录下。通过正确配置此文件,可以实现在启动Weblogic服务器时...
boot.properties加解密 WLEncrypt:=========================== encrypt result:{AES}f5GuX7x1nWKVrz2yTneeiKBRMDkE1Z08Ud/rcZYozwE= decrypt result:weblogic WLEncrypt:===========================
例如,如果域目录位于`C:\Domains\mydomain`,则需要修改`C:\Domains\mydomain\servers\AdminServer\security\boot.properties`文件中的密码。 成功启动WebLogic服务器后,系统将会自动加密该密码。 ##### 5. ...
在节点1上,创建启动认证信息,编辑boot.properties文件,设置用户名和密码,然后启动AdminServer和两个Managed Server(node1和proxy)。节点2的配置类似,只是启动Managed Server(node2)。 在集群配置阶段,...
##### 步骤4:修改boot.properties文件 - **目的**:更新boot.properties文件中的用户名和密码,以便服务器启动时使用新的认证信息。 - **操作**:编辑`%DOMAIN_HOME%/servers/AdminServer/security/boot....
- 为了无密码启动WebLogic,创建一个`boot.properties`文件,其中包含用户名和密码: ``` password=12345678 username=weblogic ``` - 修改`startWebLogic.sh`和`stopWebLogic.sh`脚本,使WebLogic在后台运行...
在创建域之后,需要编辑 boot.properties 文件,该文件用于存储域的配置信息。在编辑 boot.properties 文件时,需要指定管理员用户名和密码等信息。 四、编辑启动管理服务器的文件 在创建域之后,需要编辑启动管理...
本文详细讲解了 WebLogic 密码破解的步骤和方法,涵盖了 WebLogic 8.1、WebLogic 9.0 和 Oracle WebLogic Server 10.3_win32 等多个版本。这些方法可以帮助开发者和管理员快速破解 WebLogic 密码,解决实际应用中...
- 准备好Weblogic Server的`boot.properties`文件的位置(通常位于`%DOMAIN_HOME%/servers/AdminServer/security`)。 2. **修改用户名和密码**: - 使用Java命令行工具调用`AdminAccount`类来修改用户名和密码。...
- **编辑脚本**:编辑`/weblogic/bea/user_projects/domains/base_domain/servers/AdminServer/security/boot.properties`文件,输入管理员用户名和密码。 - **加密保存**:通过`nohup ./startWebLogic.sh`命令启动...
在创建域的过程中,你可能需要一些配置文件,比如`nodemanager.properties`用于Node Manager配置,`setDomainEnv.sh`用于设置域环境变量,以及`boot.properties`用于安全管理器的启动认证。这些文件应根据实际需求...
如果WebLogic服务器配置了`boot.properties`文件,则可以通过命令行的方式修改密码: ```bash # 修改boot.properties中的密码 sed -i 's/username=password/username=newpassword/g' <domain_home>/servers/...