SharePoint 2013 search service 爬网错误诊断三则

SharePoint 2013 爬网错误1:

Access is denied.  Verify that either the Default Content Access Account has access to this repository, or add a crawl rule to crawl this repository. If the repository being crawled is a SharePoint repository,
verify that the account you are using has “Full Read” permissions on the SharePoint Web Application being crawled.

1. 确保用于Crawl的帐号有权限访问要爬网的网站

2. 确保Web服务器上面没有回环,可以用以下命令禁用回环

New-ItemProperty HKLM:\System\CurrentControlSet\Control\Lsa -Name “DisableLoopbackCheck” -Value “1″ -PropertyType dword

SharePoint 2013 爬网错误2:

The item has been truncated in the index because it exceeds the maximum size

以上错误一般是因为爬 网对象(文档等)的大小超过了默认限制 。

可以运行以下命令修改限制:

$ssa = Get-SPEnterpriseSearchServiceApplication
$mp = Get-SPEnterpriseSearchMetadataManagedProperty -SearchApplication $ssa -Identity "PublishingPageContentOWSHTML"
$mp.MaxCharactersInPropertyStoreForRetrieval = 2097152
$mp.Update()

SharePoint 2013 爬网错误3:

The content for this address was excluded by the crawler because this item was marked with a no-index meta-tag. To index this item, remove the meta-tag and recrawl.

1.  确保爬网对象的URL没有被爬网规则exclude

2. 确保爬网规则Include 的SharePoint 站点对象时不要选中"Crawl SharePoint content as http pages"

时间: 2024-10-21 20:46:32

SharePoint 2013 search service 爬网错误诊断三则的相关文章

SharePoint 2013:解决爬网出错的问题

现象: 以前一直正常的爬网突然无法顺利完成,总是在进行到某个部分就停滞不前. 调查: 在查看了log文件后,发现了这条错误 06/24/2014 11:14:51.86   NodeRunnerQuery1-734f5ee7-2cc2- (0x0DD4)  0x14A0    Search                            Common Processing                28    Information   Component and System=Que

SharePoint 2013 手动删除爬网项目

本文介绍如何手动删除某些搜索项目,其实删除搜索项目并不常用,主要还是在刚刚完成爬网,就删除了某些项目,然后有比较敏感需要马上删除的时候.下面,就跟着图文简单了解下手动删除已爬网的项目吧. 1.配置好搜索,搜索linyu,如下图: 2.进入管理中心,点击Manage service applications,如下图: 3.找到Search Service Application,点击进入,如下图: 4.进入Search Administration,我们可以管理搜索配置,如下图: 5.点击左侧菜单

Sharepoint 2013 设置连续爬网规则(crawl)

对现有内容源启用连续爬网 确认执行此过程的用户帐户是 搜索服务 应用程序的管理员. 在 管理中心 的"应用程序管理"部分,单击"管理服务应用程序". 单击 搜索服务 应用程序. 在搜索管理"页上的"快速启动"中,单击"正在爬网"下的"内容源". 在管理内容源"页上,单击要为其启用连续爬网的 SharePoint 内容源. 在"爬网计划"部分,选择"启用连续爬

SharePoint Server 2013 中的爬网最佳做法

了解在 SharePoint Server 2013 中爬网的最佳做法 搜索系统对内容进行爬网,以构建一个用户可以对其运行搜索查询的搜索索引.本文包含有关如何最有效地管理爬网的建议. 本文内容: 使用默认内容访问帐户对大部分内容进行爬网 有效使用内容源 对用户配置文件进行爬网,然后再对 SharePoint 网站进行爬网 使用连续爬网确保搜索结果为最新 使用爬网规则排除已爬网的不相关的内容 对 SharePoint Web 应用程序的默认区域进行爬网 降低对 SharePoint 爬网目标进行爬

修复SharePoint 2013 Search 拓扑错误

Problem 当创建和配置SharePoint 2013 Search Service Application成功之后,进入详细配置页后,在Search Application Topology节点下显示如下错误: Unable to retrieve topology component health states. This may be because the admin component is not up and running Resolution 注: 花了很长时间去排查这个问

配置SharePoint 2013 Search 拓扑结构

在单台服务器上安装了 SharePoint Server 2013,并且创建了具有默认搜索拓扑的 Search Service 应用程序.在默认搜索拓扑中,所有搜索组件都位于承载管理中心的服务器上.SharePoint 2013中的搜索具备了非常强大的功能,但所消耗的资源也是巨大的.所以,在具备硬件条件下,合理的规划SharePoint 2013搜索拓扑结构是非常有必要的. 要规划搜索的拓扑结构,那么有必要先了解SharePoint Farm的拓扑结构. SharePoint 2013 Farm

SharePoint 2013 Search REST API 使用示例

原文:SharePoint 2013 Search REST API 使用示例 前言:在SharePoint2013中,提供Search REST service搜索服务,你可以在自己的客户端搜索方法或者移动应用程序中使用,该服务支持REST web request.你可以使用KeyWord Query Language(KQL)或者FAST Query Language(FQL)来对Search REST Service进行搜索查询,并且,试用与远程客户端应用程序.移动应用程序和其他应用程序.

SharePoint 2013 Search 配置总结

原文:SharePoint 2013 Search 配置总结 前言:SharePoint 2013集成了Fast搜索以后,搜索的配置有了些许改变,自己在配置过程中,也记录下了一些入门的东西,希望能够对大家有所帮助. 1.配置搜索服务,首先需要启用搜索功能,基本思路就是新建搜索应用程序,创建内容源,完全爬网,可参考如下博文: SharePoint 2013 配置启用搜索服务 2.由于SharePoint 2013的搜索功能,集成了Fast搜索以后,对于服务器的要求非常高,所以很多情况下,尤其开发机

SharePoint 2013 Search Keyword Query Class

原文地址 SharePoint 2013 Search Keyword Query Class 本文由SPFarmer翻译 在过去旧版本的SharePoint中,我已经写过一些关于如何使用搜索的文章,在这些文章当中,如何使用 KeywordQuery类是比较火的(2010和 2007). 发扬这个传统,我很骄傲的发布如何使用KeywordQuery 类的SharePoint 2013版本. 好消息是,你以前的旧代码应该还可以工作,快消失是,这些就得类和方法都被标记为废弃了.事实上,我在大量的文档