zoukankan      html  css  js  c++  java
  • MOSS 修改了服务器账号密码后的问题

    按如下步骤操作即可:
    1. 更新 Central Administration application pool 所使用的帐户密码:
     a. 在 SharePoint 服务器场的所有服务器上,打开控制台,输入以下命令并回车:
      cd %commonprogramfiles%/Microsoft Shared/Web server extensions/12/Bin
     b. 在 Central Administration 站点所在服务器上,在控制台中输入以下命令并回车:
      stsadm -o updatefarmcredentials -userlogin DomainName/UserName -password NewPassword
     c. 在SharePoint 服务器场的所有其他服务器上,在控制台中输入以下命令并回车:
      stsadm -o updatefarmcredentials -userlogin DomainName/UserName -password NewPassword -local
     d. 在控制台中输入以下命令以重启IIS:
      iisreset /noforce
    2. 验证 Administration Application Pool Credential Deployment job definition 不再显示在 Central Administration 的 Timer Job Definitions 页面中:
     a. 打开 SharePoint 3.0 Central Administration,点击 Operations,再点击 Global Configuration 中的 Timer job definitions。
     b. 检查以验证 Administration Application Pool Credential Deployment job definition 没有显示在列表中。
    3. 更新服务器场中Web站点所使用的应用程序池的账号密码。在服务器场中每台服务器的控制台中输入以下命令并回车:
     stsadm -o updateaccountpassword -userlogin DomainName/UserName -password NewPassword -noadmin
    4. 更新 Windows SharePoint Services Help Search 服务运行时所使用的账号密码,在服务器场中每台服务器的控制台中输入以下命令并回车
     stsadm.exe -o spsearch -farmserviceaccount DomainName/UserName -farmservicepassword NewPassword
    5. 更新 Windows SharePoint Services Help Search 服务的默认内容访问账号的密码,在服务器场中每台服务器的控制台中输入以下命令并回车
     stsadm.exe -o spsearch -farmcontentaccessaccount DomainName/UserName -farmcontentaccesspassword NewPassword
    6. 如果使用的是 MOSS 2007,还需要执行下列步骤:
     a. 更新服务器场中每个 Shared Services Provider (SSP) 所使用的账号密码,在服务器场中每台服务器的控制台中输入以下命令并回车
      stsadm.exe -o editssp -title SharedServicesProviderName -ssplogin DomainName/UserName -ssppassword NewPassword
     b. 更新 Office SharePoint Server Search 服务运行时所使用的账号密码,在控制台中输入以下命令并回车
      stsadm.exe -o osearch -farmserviceaccount DomainName/UserName -farmservicepassword NewPassword
     c. 如果服务器场使用 single sign-on, 还需要执行以下步骤来更新 Microsoft Single Sign-On 服务运行时所使用的账号密码:
      1. 在 Central Administration 页面中单击 Operations,选择 Security Configuration 中的 Service accounts。
      2. 点击 Windows service 下的 Single Sign-On Service。
      3. 在 Configurable 下面设置密码并单击OK。
     d. 更新 Office SharePoint Server Search 服务的默认内容访问帐号的密码:
      1. 打开 Central Administration,在 Shared Services Administration 下面单击链接到 SSP web 站点的链接。
      2. 在 Search 下单击 Search settings,再点击 Default content access account。
      3. 设置密码,并点击OK。

  • 相关阅读:
    servlet多线程同步问题
    servlet之request
    servlet方法
    非静态内部类不能有静态成员
    接口与抽象类的区别
    枚举
    Install CUDA 6.0 on Ubuntu 14.04 LTS
    Introduction to Deep Learning Algorithms
    codeblocks 使用汇总
    矩阵奇异值分解(SVD)及其应用
  • 原文地址:https://www.cnblogs.com/hainange/p/6153244.html
Copyright © 2011-2022 走看看