惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hacker News: Front Page
P
Palo Alto Networks Blog
T
ThreatConnect
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
T
True Tiger Recordings
P
Privacy & Cybersecurity Law Blog
B
Blog
IT之家
IT之家
Last Week in AI
Last Week in AI
F
Full Disclosure
Hacker News: Ask HN
Hacker News: Ask HN
C
Comments on: Blog
Microsoft Azure Blog
Microsoft Azure Blog
C
Cybersecurity and Infrastructure Security Agency CISA
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
N
News and Events Feed by Topic
NISL@THU
NISL@THU
腾讯CDC
雷峰网
雷峰网
Security Latest
Security Latest
李成银的技术随笔
M
Microsoft Research Blog - Microsoft Research
L
LangChain Blog
L
Lohrmann on Cybersecurity
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
C
Check Point Blog
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
博客园 - Franky
N
News | PayPal Newsroom
V
V2EX
A
About on SuperTechFans
The Register - Security
The Register - Security
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google Online Security Blog
Google Online Security Blog
MyScale Blog
MyScale Blog
Cisco Talos Blog
Cisco Talos Blog
Vercel News
Vercel News
WordPress大学
WordPress大学
C
Cyber Attacks, Cyber Crime and Cyber Security
The Hacker News
The Hacker News
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
爱范儿
爱范儿
A
Arctic Wolf
L
LINUX DO - 最新话题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

博客园 - Jans

Flutter运行时闪退 利用 Python 爬虫来对文本进行批量化翻译 Thinkpad T460声音问题 Error 56: The Cisco Systems, Inc. VPN Service has not been started(Cisco VPN在Vista/Win 7下出现Error 56的解决办法) - Jans Weblogic中配置Active Directory Authentication Provider 在基于WCF开发的Web Service导出WSDL定义问题及自定义wsdl:port 名称 - Jans JNI:在线程或信号处理函数中访问自定义类 (转)Java实现Web Service过程中处理SOAP Header的问题 Geek to Live: Set up your personal Wikipedia - Jans (转)GitHub上整理的一些工具,求补充 - (转)老衣的开发工具和类库集之2014版 GCC的内存边界对齐 如何删除Weblogic域 - Jans 电蚊拍选购参考 Localizing WPF with .resx files - Jans C#操作串口总结 ASP.NET MVC的国际化问题 小众的分布式版本管理工具Code Co-op - Jans 关于效率长尾现象
weblogic 10.3.5重置密码
Jans · 2015-08-10 · via 博客园 - Jans

weblogic 10.3.5重置密码

  热度1,609 ℃  时间:2013-12-26 10:26  分类:middleware  评论数:0 条

0

   weblogic默认验证密码机制:如果输入错误超过5次,即使后面输入正确,也会报密码错误(这点相当坑爹啊!)

   不过正好实践了下如何重置10.3.5版本的密码重置,密码验证主要是通过security/DefaultAuthenticatorInit.Ldift 来验证,更新完之后删除domain下的

ldap目录里的缓存文件。

   步骤如下:

   将所有的应用全部关闭(具体步骤略)

cd ~/weblogic_home/user_projects/domains/domain/security

cp DefaultAuthenticatorInit.Ldift  DefaultAuthenticatorInit.Ldift.bak#备份验证文件

java -classpath ~/weblogic_home/wlserver_10.3/server/lib/weblogic.jar   weblogic.security.untils.AdminAccount weblogic  weblogic123 .

#重置weblogic 密码为weblogic123  ,注意后面是'空格.'

rm -rf   ~/weblogic_home/user_projects/domains/domain/servers/AdminServer/data/ldap/* #删除ladp缓存,注意,不要删错了。。

vim   ~/weblogic_home/user_projects/domains/domain/servers/AdminServer/security/boot.properties  #如果没有免密码登陆请跳过此步

#删除之前加密过的字符,修改为

password=weblogic123

username=weblogic

  然后启动应用(具体步骤略),如果有多个应用请重复上面的步骤。