zoukankan      html  css  js  c++  java
  • SharePoint创建web application出现“The password supplied with the username was not correct”错误的解决方法

    平台环境

      Windows Server 2012 R2 Standard, SharePoint Server 2010, Microsoft SQL Server 2012 (SP1)

    问题描述

      在 SharePoint Central Administration 中 New Web Application 时出现如下错误:

      The password supplied with the username *** was not correct. Verify that it was entered correctly and try again. 

    原因分析

      根据问题描述,是因为账户密码不匹配,而最近有变更域账户密码操作,因此很大可能是因为 SharePoint 中还保留原来的凭据导致的问题。

    解决方法

      根据原因分析,需要更新 SharePoint 中保留的原凭据。

      操作:以管理员身份运行 SharePoint 2010 Management Shell ,输入更新账户密码的命令:

    stsadm -o updatefarmcredentials -userlogin <domainusername> -password <newpassword>

      确认后等提示 Operation completed successfully. 即可。

    其他相关

      域账户密码修改后,由于系统中很多使用此凭据的 Services 并不会自动更新,因此需要手动更新相关账户密码,否则无法正常启动使用原有凭据的服务。 

    引用参考

  • 相关阅读:
    r语言
    pickle模块
    mongodb简介
    oracle
    mysql
    ceph
    迭代器
    python类
    encode&decode
    PHP 截取字符串中某两个字符(串)之间的字符串 考虑多个的情况
  • 原文地址:https://www.cnblogs.com/Interkey/p/SharePointWebApplicationError_01.html
Copyright © 2011-2022 走看看