惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
Martin Fowler
Martin Fowler
Schneier on Security
Schneier on Security
S
Schneier on Security
A
Arctic Wolf
L
LangChain Blog
T
Threatpost
GbyAI
GbyAI
V2EX - 技术
V2EX - 技术
Jina AI
Jina AI
U
Unit 42
P
Proofpoint News Feed
M
MIT News - Artificial intelligence
G
GRAHAM CLULEY
T
The Exploit Database - CXSecurity.com
Spread Privacy
Spread Privacy
F
Fortinet All Blogs
Y
Y Combinator Blog
D
Darknet – Hacking Tools, Hacker News & Cyber Security
C
Cybersecurity and Infrastructure Security Agency CISA
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
月光博客
月光博客
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
F
Full Disclosure
博客园 - 【当耐特】
S
Secure Thoughts
美团技术团队
N
News | PayPal Newsroom
爱范儿
爱范儿
Latest news
Latest news
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
S
Security @ Cisco Blogs
V
V2EX
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
腾讯CDC
The Hacker News
The Hacker News
V
Vulnerabilities – Threatpost
Cyberwarzone
Cyberwarzone
Google Online Security Blog
Google Online Security Blog
N
Netflix TechBlog - Medium
I
Intezer
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
The Last Watchdog
The Last Watchdog
N
News and Events Feed by Topic
T
Tor Project blog
博客园 - 三生石上(FineUI控件)
Security Archives - TechRepublic
Security Archives - TechRepublic
大猫的无限游戏
大猫的无限游戏
Security Latest
Security Latest

博客园 - Allen Zhang

oracle数据库的字符集更改 用SQL server导出到oracle,查询时提示“表或视图不存在ORA-00942”错误 由于无法创建应用程序域,因此未能执行请求。错误: 0x80070002 系统找不到指定的文件 导出Excel时发生COM组件失败的解决方案 jquery下一个空格带来的血案 Web应用系统中关闭Excel进程 C++数据类型与C#对应关系 c#调用WINDWOS API时,非常有用(转) 水晶报表的交叉表中增加超级链接 JavaScript和ExtJS的继承 Ext.extend Ext.applyIf (转) SQL SERVER 2000数据库置疑处理 ScriptX控件部分参数说明 - Allen Zhang - 博客园 给ASP.net程序配置代理服务器 使用jQuery的validation后,无法引发asp.net按钮的事件处理程序 使用代码模拟请求和提交网页数据 - Allen Zhang - 博客园 C#调用Delphi写的动态链接库 - Allen Zhang - 博客园 近期一些超值文章及工具收集 用STSADM工具全自动备份sharepoint站点 创建MOSS网站下的新闻 SQL Server Reporting Services与MOSS集成资料汇总
修复MOSS2007备份还原后搜索服务出现的问题(续) - Allen Zhang - 博客园
Allen Zhang · 2007-11-05 · via 博客园 - Allen Zhang

上次写了“MOSS2007备份还原后搜索服务出现的问题”,当时通过还原是解决问题了,前几天,我再到客户那里的时侯,发现又出现了同样的问题。看来还原还不能完全解决问题。网上找了一堆方法,最后用下面的方法解决了该问题:

应用程序事件日志

来源:Office SharePoint Server 
类型:错误 
事件ID:
6482 
用户:N
/
计算机:DCBAKSERVER 
描述:
"服务实例 Microsoft.Office.Server.Search.Administration.SearchServiceInstance (35960467-be98-4cef-94c0-4dcf5773ac52)的应用程序服务器管理作业失败。
原因: 未将对象引用设置到对象的实例。
技术支持详细信息:
System.NullReferenceException: 未将对象引用设置到对象的实例。
   在 Microsoft.Office.Server.Search.Administration.SearchServiceInstance.InstallGathererApplicationIf()
   在 Microsoft.Office.Server.Search.Administration.SearchServiceInstance.Synchronize()
   在 Microsoft.Office.Server.Administration.ApplicationServerJob.ProvisionLocalSharedServiceInstances(
Boolean isAdministrationServiceJob)"


解决方法

1、在服务器上停止Office SharePoint Service搜索服务
   命令行语句为:Stsadm.exe -o osearch -action stop
2、在Windows服务里重启MOSS Timer service
   命令行语句为:net stop SPTimerV3
               net start SPTimerV3
3、启动Office SharePoint Server 搜索的索引服务
点击“服务器上的服务”,再点击“Office SharePoint Server 搜索服务设置”,选择“使用此服务器索引内容”
   命令行语句:StsAdm.exe -o osearch -action start -role index
4、修改配置索引文件目录,使用命令
StsAdm.exe -o osearch -defaultindexlocation d:\myAppIndexData
5、启动启动Office SharePoint Server 搜索的查询服务
点击“服务器上的服务”,再点击“Office SharePoint Server 搜索服务设置”,选择“用此服务器提供搜索查询服务”
命令行语句:StsAdm.exe -o osearch -action start -role query
6、更改索引文件目录到我们修改过的目录
StsAdm.exe -o osearch -propogationlocation d:\myAppIndexData
7、等待几分钟时间,然后我们修改SSP的设置,给SSP分配索引器。如果索引器不能选择或为空,则点击“服务器上的服务”,再点击“Office SharePoint Server 搜索服务设置”,选中“使用此服务器索引内容”,然后确定,再去修改SSP设置就可以了。
8、等待10分钟,或更长时间,然后我们再去检查我们的搜索是否正常,我的到这里问题就解决了,经过三四天观察没有再出现同样问题。

这里需要注意的时,修改SSP后的等待时间,可能是等待MOSS Timer Service执行某些任务,比如同步之类,具体执行了哪些操作我也不清楚,如果哪位高手知道的话,帮我解答一下了。