zoukankan      html  css  js  c++  java
  • 与Search相关的SharePoint中的几个service account

    1. MOSS 的 Search Service account

    这个是用来运行Search Service的账号, 并不是实际用来爬网和制作index的账号. 这个账号必须是本地管理员(不是域管理员), 即在query server上是, 也在index server上是本地管理员, 这样才能让propagation正常工作.

    如何修改这个账号呢? 下面就是方法了.

    1. Open SharePoint Central Administration, click Operations.

    2. Click Services on server, and then Office SharePoint Server Search.
    3. Configure the Farm Search Service Account. It is okay to use the same account as the SharePoint application pool identity.

    4. Scroll down and click OK.
    5. Wait while your changes are processed.

    改过之后, 你可以在services.msc中看到运行Office SharePoint Search的账号已经变了.

     

    2. MOSS Search 的 default content access account

    这个账号是用来爬网和制作索引的, 每一个SSP中都有这样的一个账号. 它应该与application pool的账号不同, 并且被配置为只有最新版本的文档才可以被索引, 要不然的话, 老版本的文件也会出现在搜索结果中.

     

    如何修改这个账号?

    1. Open SharePoint Central Administration (SCA), and on the left below Shared Services Administration click on the Shared Service Provider with the search configuration you want to change (e.g. SharedServices1).

    2. Under Search, click Search settings. Click Default content access account.

    3. Enter the credentials, confirm the password and click OK.

    3. WSS Search 的 default content access account

    注意, Search Service account(运行着WSS Search application) 与 Content Access account(爬网, 索引)是不同的.  

    Search Service account也许会和SharePoint application pool identity相同.

    Content Access account 应该与SharePoint application pool identity不同.

     

    如何修改这个账号?

    1. Open SharePoint Central Administration, click Operations.

    2. Click Services on server, and then Windows SharePoint Services Help Search.

    3. Configure the Service Account.

    4. Configure the Content Access Account.

    5. Scroll down and click OK.

    6. Wait while your changes are processed.

    或者:

    1. Open a command line.

    2. Run: stsadm.exe -o spsearch -farmserviceaccount domain\username -farmservicepassword password
      It is okay to use the same account for this service as the SharePoint Application Pool identity.

    3. Run: stsadm.exe -o spsearch -farmcontentaccessaccount domain\username -farmcontentaccesspassword password
      This account should be different from the SharePoint Application Pool identity.

    4. Repeat these steps for all servers in the farm.

     

    摘自:

    How to change service accounts and their passwords in MOSS and WSS 3.0

    http://weblogs.asp.net/erobillard/archive/2007/07/06/how-to-change-service-accounts-and-their-passwords-in-moss-and-wss-3-0.aspx

  • 相关阅读:
    javaWeb css图文混排
    Junit 测试 @Test 红名问题
    java面试题:已知一个数组[2,4,6,2,1,5],将该数组进行排序(降序,不能用工具类进行排序),创建两条线程交替输出排序后的数组,线程名自定义
    【转】正则表达式的分组
    正则表达式基础
    IIS连接数修改
    【整理】fiddler不能监听 localhost和 127.0.0.1的问题
    【转】WKT、SRID、EPSG概念
    WPF中查找控件的扩展类
    【转】告别码农,成为真正的程序员
  • 原文地址:https://www.cnblogs.com/awpatp/p/1676094.html
Copyright © 2011-2022 走看看