weblogic管理3 - 生产模式下免密码管理配置
Posted 张冲andy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了weblogic管理3 - 生产模式下免密码管理配置相关的知识,希望对你有一定的参考价值。
admin server免密码配置 >
1. 生产模式中admin root目录下是否存在security/boot.properties文件
[[email protected] AdminServer]$ pwd
/home/weblogic/Oracle/Middleware/user_projects/domains/base_domain/servers/AdminServer
[[email protected] AdminServer]$ ll
total 16
drwxr-----. 3 weblogic weblogic 4096 Nov 6 14:45 cache
drwxr-----. 5 weblogic weblogic 4096 Nov 6 14:46 data
drwxr-----. 3 weblogic weblogic 4096 Nov 6 14:46 logs
drwxr-----. 4 weblogic weblogic 4096 Nov 7 14:29 tmp
2. 如果没有,则创建security/boot.properties文件。
[[email protected] AdminServer]$ mkdir security
[[email protected] AdminServer]$ cd security/
[[email protected] security]$ ls -l
total 0
[[email protected] security]$ vi boot.properties -- 在boot.properties文件下添加 管理员 username与password
[[email protected] security]$ cat boot.properties
username=weblogic
password=weblogi.
3. 重新启动weblogic,验证是否不需要密码管理。
[[email protected] bin]$ pwd
/home/weblogic/Oracle/Middleware/user_projects/domains/base_domain/bin
[[email protected] bin]$ ./startWebLogic.sh
4. 检查boot.properties文件中的密码是否已经成功加密。
[[email protected] security]$ pwd
/home/weblogic/Oracle/Middleware/user_projects/domains/base_domain/servers/AdminServer/security
[[email protected] security]$ cat boot.properties
#Fri Nov 07 16:49:22 EST 2014
password={AES}O1V2n9Pn24Po2FMOBks5m5+NEgDZyGnoxi5ypHlqIkQ\=
username={AES}TvgZTRidDgbWh2bJPsOV40qQvrpEWOAxMH2Iyf8ugLY\=
___________________________________________________________________________________
managed server免密码配置
1. 找到managed server 的root directory目录。
[[email protected] Server-0]$ pwd
/home/weblogic/Oracle/Middleware/wlserver_10.3/common/bin/servers/Server-0 --参数说明 Server-0 为managed server name
2. 创建security/root.properties文件
[[email protected] Server-0]$ mkdir security
[[email protected] Server-0]$ cd security/
[[email protected] security]$ touch boot.properties
3. 向boot.properties文件中添加weblogic管理员账号与密码。
[[email protected] security]$ vi boot.properties
[[email protected] security]$ cat boot.properties
username=weblogic
password=weblogi.
OK end。
以上是关于weblogic管理3 - 生产模式下免密码管理配置的主要内容,如果未能解决你的问题,请参考以下文章