如何在 websphere Portal v7 中恢复管理员密码?

发布于 2024-12-11 11:30:58 字数 52 浏览 0 评论 0原文

我忘记了以管理员身份进入 websphere 门户的密码。如何恢复密码?..请在此提供帮助

I have forgotten the password to enter the websphere portal as admin.How to recover the password?..PLease help in this

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

请叫√我孤独 2024-12-18 11:30:58

如何在 Websphere 6 或 7 中对密码进行编码

步骤 1:打开控制台并导航到包含“ws_runtime.jar”的文件夹。
使用搜索工具来查找它。

步骤 2:java -cp ws_runtime.jar com.ibm.ws.security.util.PasswordEncoder "password"

示例:

输入

java -cp ws_runtime.jar com.ibm.ws.security.util.PasswordEncoder "password"

输出

decoded password == "password", encoded password == "{xor}Lz4sLCgwLTs="

如何在 Websphere 6 或中解码您的密码7

第1步:找到并打开“security.xml”。它将是具有类似路径的文件夹,例如“runtime\..?..\PROFILE_ACCOUNT\...?..\workspace\..?..\”。
使用搜索工具来查找它。

步骤2:在“security.xml”中,找到“authDataEntries”标签,然后获取密码属性。

步骤 3:打开控制台并导航到包含“ws_runtime.jar”的文件夹。
使用搜索工具来查找它。

步骤 4:java -cp ws_runtime.jar com.ibm.ws.security.util.PasswordDecoder PASSWORD_ATTIBUTE

示例:

输入

java -cp ws_runtime.jar com.ibm.ws.security.util.PasswordDecoder {xor}Lz4sLCgwLTs=

输出

encoded password == "{xor}Lz4sLCgwLTs=", decoded password == "password"

How to encode your password in Websphere 6 or 7

Step 1: Open up your console and navigate to the folder that contains "ws_runtime.jar".
Use a search tool to find it.

Step 2: java -cp ws_runtime.jar com.ibm.ws.security.util.PasswordEncoder "password"

Example:

Input

java -cp ws_runtime.jar com.ibm.ws.security.util.PasswordEncoder "password"

Output

decoded password == "password", encoded password == "{xor}Lz4sLCgwLTs="

How to decode your password in Websphere 6 or 7

Step 1: Location and open "security.xml". It will be folder with a similar path like so "runtime\..?..\PROFILE_ACCOUNT\...?..\workspace\..?..\".
Use a search tool to find it.

Step 2: In "security.xml", find the "authDataEntries" tag and then get the password attribute.

Step 3: Open up your console and navigate to the folder that contains "ws_runtime.jar".
Use a search tool to find it.

Step 4: java -cp ws_runtime.jar com.ibm.ws.security.util.PasswordDecoder PASSWORD_ATTIBUTE

Example:

Input

java -cp ws_runtime.jar com.ibm.ws.security.util.PasswordDecoder {xor}Lz4sLCgwLTs=

Output

encoded password == "{xor}Lz4sLCgwLTs=", decoded password == "password"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文