博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
weblogic修改应用服务器启动密码
阅读量:6425 次
发布时间:2019-06-23

本文共 2080 字,大约阅读时间需要 6 分钟。

weblogic中间件登录密码修改

1、登录console
weblogic修改应用服务器启动密码
2、选择“Security Realms”,如果是中文控制台,对应选择“安全领域”,点击myrealm
weblogic修改应用服务器启动密码
3、选择Users and Groups--点击“用户名”,如果是中文控制台,对应选择“用户和组”—点击“用户名”
weblogic修改应用服务器启动密码
4、选择Passwords,在密码框里输入新密码,点击Save。如果是中文控制台,对应选择“口令”,在密码框输入新密码,点击保存。
weblogic修改应用服务器启动密码
保存后立即生效,即你退出后即能以新密码登录。
5、cd /weblogic/domain/TPP_domain/security 键入如下命令(最后有个点.),请注意这一步很重要,没有这步会报
java.lang.SecurityException:User:weblogic,failed to be authenticated
备份mv DefaultAuthenticatorInit.ldift DefaultAuthenticatorInit.ldift.bak
java -classpath /weblogic/wlserver_10.3/server/lib/weblogic.jar weblogic.security.utils.AdminAccount weblogic newpassword .
6、 修改boot.proerties
(1)cd /weblogic/domain/TPP_domain/servers/
(2)分别备份AdminServer、innermanagerServer、paymentServer、merchantServer的boot.proerties为boot.properties.bak
(3)然后分别vim boot.properties 写入如下内容密码是第4步改好的密码。
username=weblogic
password=newpassword
(4)然后重启AdminServer、innermanagerServer、paymentServer、merchantServer这些应用。
重启操作如下:
【1】停止merchant应用:cd /weblogic/domain/TPP_domain/bin/ 执行 ./stopManagedWeblogicsh merchantServer
切换目录 cd /weblogic/domain/TPP_domain/servers/merchantServer
rm -rf cacahe/ stage/ tmp/
【2】 停止payment应用:cd /weblogic/domain/TPP_domain/bin/ 执行 ./stopManagedWeblogicsh paymentServer
切换目录 cd /weblogic/domain/TPP_domain/servers/paymentServer
rm -rf cacahe/ stage/ tmp/
【3】停止innermanager应用:cd /weblogic/domain/TPP_domain/bin/ 执行 ./stopManagedWeblogicsh innermanagerServer
切换目录 cd /weblogic/domain/TPP_domain/servers/ innermanagerServer
rm -rf cacahe/ stage/ tmp/
【4】停止AdminServer: cd /weblogic/domain/TPP_domain/bin/
执行./stopWebLogic.sh
【5】启动cd /weblogic/domain/TPP_domain/bin/
分别启动:
先启动AdminServer
cd /weblogic/domain/TPP_domain/bin/
nohup ./startWebLogic.sh &
2分钟后启动innermanagerServer
cd /weblogic/domain/TPP_domain/bin/
nohup ./startManagedWebLogic.sh innermanagerServer > /dev/null 2>&1 &
网页登陆验证
2分钟后启动merchantServer
cd /weblogic/domain/TPP_domain/bin/
nohup ./startManagedWebLogic.sh merchantServer > /dev/null 2>&1 &
验证后
2分钟后启动paymentServer
cd /weblogic/domain/TPP_domain/bin/
nohup ./startManagedWebLogic.sh paymentServer > /dev/null 2>&1 &

转载于:https://blog.51cto.com/babyhanggege/2175307

你可能感兴趣的文章
本期最新 9 篇论文,帮你完美解决「读什么」的问题 | PaperDaily #19
查看>>
图解SSIS监视文件夹并自动导入数据
查看>>
Lucene.Net 2.3.1开发介绍 —— 四、搜索(一)
查看>>
MyBatis Review——开发Dao的方法
查看>>
技术研发国产化进程加快 看传感器企业如何展示十八般武艺
查看>>
技术助力第三次革命
查看>>
《HTML与CSS入门经典(第8版)》——2.6 总结
查看>>
新手指南:在 Ubuntu 和 Fedora 上安装软件包
查看>>
在 CentOS7.0 上搭建 Chroot 的 Bind DNS 服务器
查看>>
大型网站的 HTTPS 实践(二):HTTPS 对性能的影响
查看>>
《Swift 权威指南》——第6章,第6.10节嵌套函数
查看>>
《自己动手做交互系统》——1.3 本章小结
查看>>
Mobile devices bundled with malware?
查看>>
《JavaScript面向对象精要》——1.5 访问属性
查看>>
《Python数据可视化编程实战》—— 第 1 章 准备工作环境
查看>>
Android应用性能优化最佳实践.1.1 Android Studio的优势
查看>>
《设计模式解析(第2版•修订版)》—第2章 2.2节什么是UML
查看>>
【直播】APP全量混淆和瘦身技术揭秘
查看>>
10个大坑,当你产品上架AppStore会遇到
查看>>
【shell 脚本】两种登录方式
查看>>