【问题标题】:How to recover admin password in websphere portal v7?如何在 websphere 门户 v7 中恢复管理员密码?
【发布时间】:2011-10-25 05:42:17
【问题描述】:

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

【问题讨论】:

    标签: websphere websphere-7 websphere-portal


    【解决方案1】:

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

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

    第二步: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\..?..\”。 使用搜索工具找到它。

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

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

    第四步: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"
    

    【讨论】:

      【解决方案2】:
      【解决方案3】:

      【讨论】:

        猜你喜欢
        • 2013-08-15
        • 2016-04-08
        • 1970-01-01
        • 2015-09-03
        • 2016-09-04
        • 1970-01-01
        • 2012-09-29
        • 2013-12-21
        • 1970-01-01
        相关资源
        最近更新 更多