when we start weblogic, in some conditions, it will let you input the admin user and password. so the interaction mode can NOT used by your script to start the weblogic bypass the user and password.
There is a way to bypass the weblogic admin user/password when you start the weblogic.
1. The password file and location:
$DOMAIN_HOME/servers/<your server>/security/boot.properties
2. add the following lines in the file: boot.properties
username=<weblogic admin user>
password=<admin user password>
3. start weblogic: it will not prompt the user and password.
startWebLogic.sh
4. open the boot.properties after the weblogic started. you will find the username and password have been encrypt.
username={AES}RHsDjiBTdRwwJvYpS6cR/irVG5kLqZvwLH0HuDpRE4s=
password={AES}coE7iaNFP8nI76gJ9X2crflJ9kOLEB7igjnpoYyxFUQ=
分享到:
相关推荐
NULL 博文链接:https://vernonchen163.iteye.com/blog/1995514
Weblogic安装,domain创建,数据连接池配置
5. 启动服务:最后,使用 `./startWebLogic.sh` 命令启动 WebLogic 服务。 配置参数调整 在启动 WebLogic 服务之前,我们还需要调整一些配置参数。例如,可以将服务器的超载最大线程粘滞时间从 600 秒改为 1200 秒...
WebLogic Server是由Oracle公司提供的一个企业级应用服务器,它用于部署和管理各种企业应用程序。在WebLogic的安全配置中,管理员通常会为用户和系统角色设置强密码,这些密码经过加密存储,以保护敏感信息。本资源...
linux系统下nohup后台启动weblogic后输出日志很大,如果使用命令脚本管理会出现日志无法清空、备份的日志乱码等问题,利用cronolog工具和此脚本可以完美解决。(每天生成一个日志,如果按周按小时可以参考cronolog的...
2.修改d:\bea\user_projects\domains\odpsdomain(你建立的域)\bin\startWeblogic.cmd 修改 set CLASSPATH=%CLASSPATH%;%MEDREC_WEBLOGIC_CLASSP 为 set CLASSPATH=d:\bea\weblogic_crack.jar;%CLASSPATH%;%MEDREC_...
首先,需要将 Weblogic 解压到/usr 目录下,然后需要修改 WebLogic 安装目录下的 StartWebLogic.sh 脚本文件来设置 CLASSPATH 和 JAVA_HOME,最后通过这个脚本文件来启动服务。 在启动服务之前,需要修改 WebLogic ...
WebLogic的启动和关闭通常通过`startWebLogic.sh`(Unix/Linux)或`startWebLogic.cmd`(Windows)脚本来完成。这些脚本位于WebLogic安装目录的`bin`子目录下。启动脚本会读取`setDomainEnv.sh`(或`.cmd`)来设置...
5. **启动与管理**:启动WebLogic Server,可以使用`startWebLogic.sh`(Unix/Linux)或`startWebLogic.cmd`(Windows),然后通过Console或JMX接口管理服务器。 6. **部署应用**:将打包好的Java EE应用(WAR、EAR...
password=weblogic ``` 注意,在生产环境中,由于敏感信息,保存文件时可能会在`weblogic`后面加上问号。此时需要删除多余问号并以强制模式保存文件(如在HP Unix的Vi编辑器中使用`:w!`)。 启动WebLogic服务有以下...
调整 WebLogic 的内存设置主要有两种方法:一是修改 startWebLogic.bat 或 startWebLogic.sh 文件中的设置,二是修改 commEnv.* 文件中的设置。 方法一:修改 startWebLogic.bat 或 startWebLogic.sh 文件中的设置 ...
1. 使用startWebLogic.sh脚本启动WebLogic。 2. 输入用户名密码。 关闭WebLogic 1. 使用stopWebLogic.sh脚本关闭WebLogic。 修改startWeblogic.sh和stopWeblogic脚本 1. 在startWeblogic.sh脚本中添加命令,输出...
这些脚本会调用Weblogic域(DOMAIN_HOME)中的`startWebLogic.sh`和`startManagedWebLogic.sh`等命令,根据服务器的角色(如Admin Server或Managed Server)来启动相应的服务,并指定IP地址和端口。 - 启动脚本...
本文将详细介绍通过调整Weblogic线程数、设置JDBC缓冲池以及修改`startWeblogic.cmd`文件来实现这一目标的方法。 #### 1. 设置Weblogic线程数 在Weblogic服务器中,线程数直接影响到服务器能够同时处理请求的能力...
启动控制cmd文件位于C:\bea\weblogic92\samples\domains\wl_server,双击startWebLogic.cmd即可启动。 二、启动Weblogic Server 启动完毕,用weblogic作为用户名和密码登录即可。接着是Weblogic的配置使用说明,...
2. 直接运行WebLogic 9安装目录的user_projects\domains\下的startWebLogic.cmd文件。 3. 或者在user_projects\domains\bin目录下运行startWebLogic.cmd和stopWebLogic.cmd脚本,分别用于启动和停止服务。 **注意...
createDomain.bat -template:quickstart -name:MyDomain -user:weblogic -password:weblogic1 ``` 其中,MyDomain是你的域名,weblogic和weblogic1是默认的用户名和密码。 六、配置与启动WebLogic 1. 进入刚创建...