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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
Recent Announcements
Recent Announcements
IT之家
IT之家
人人都是产品经理
人人都是产品经理
G
Google Developers Blog
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
大猫的无限游戏
大猫的无限游戏
U
Unit 42
罗磊的独立博客
博客园 - Franky
WordPress大学
WordPress大学
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
M
MIT News - Artificial intelligence
SecWiki News
SecWiki News
V
Vulnerabilities – Threatpost
P
Privacy International News Feed
P
Palo Alto Networks Blog
F
Fortinet All Blogs
P
Proofpoint News Feed
博客园 - 叶小钗
C
CERT Recently Published Vulnerability Notes
T
Tor Project blog
Spread Privacy
Spread Privacy
S
Securelist
C
Cisco Blogs
I
Intezer
D
Darknet – Hacking Tools, Hacker News & Cyber Security
Cyberwarzone
Cyberwarzone
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Privacy & Cybersecurity Law Blog
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Engineering at Meta
Engineering at Meta
S
Schneier on Security
C
CXSECURITY Database RSS Feed - CXSecurity.com
GbyAI
GbyAI
T
Troy Hunt's Blog
T
Threatpost
博客园 - 司徒正美
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
AWS News Blog
AWS News Blog
T
The Blog of Author Tim Ferriss
G
GRAHAM CLULEY
N
Netflix TechBlog - Medium
酷 壳 – CoolShell
酷 壳 – CoolShell
Google DeepMind News
Google DeepMind News
Know Your Adversary
Know Your Adversary
S
SegmentFault 最新的问题

博客园 - 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 名称 JNI:在线程或信号处理函数中访问自定义类 (转)Java实现Web Service过程中处理SOAP Header的问题 Geek to Live: Set up your personal Wikipedia (转)GitHub上整理的一些工具,求补充 - (转)老衣的开发工具和类库集之2014版 GCC的内存边界对齐 如何删除Weblogic域 电蚊拍选购参考 Localizing WPF with .resx files C#操作串口总结 ASP.NET MVC的国际化问题 小众的分布式版本管理工具Code Co-op 关于效率长尾现象
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

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