VMware模拟企业Exchange2003环境全程实验(18)—解决故障转移错误
十八、解决故障转移错误3055和10006
如果在测试Exchange虚拟服务器故障转移时无法成功,且在系统日志中存在以下3055、10006、1010等错误和警告





解决方法:参考http://support.microsoft.com/kb/830189/ (中文)http://support.microsoft.com/kb/830189/en-us/(英文)文章,我的操作步骤如下:
1) 由于服务器DBEXCH02是出现故障的机器,所以在这台服务器上解决,以下操作都在这台服务器上执行;
2) 停止DBEXCH01上的Cluster Service,这样Exchange虚拟服务器就会failover到DBEXCH02上,但MTA和MSSEARCH是offline状态;
3) 拷贝KB中的代码保存为deleteapp.vbs
Sub Usage WScript.Echo "Microsoft Search Version 2.0" WScript.Echo "Deletes an Application" WScript.Echo WScript.Echo "Usage: Deleteapp.vbs Application" WScript.Echo end Sub Sub Main if WScript.Arguments.Count = 1 then if WScript.Arguments(0) = "/?" or WScript.Arguments(0) = "-?" then Usage WScript.Quit(1) end if end if if WScript.Arguments.Count < 1 then Usage WScript.Quit(1) end if dim applicationName applicationName = WScript.arguments(0) WScript.echo "Deleting Search Application " & applicationName Set objHost = WScript.CreateObject("MSSearch.Admin") 'Delete the application objHost.Applications.Remove(applicationName) End Sub call Main
4) 进入该vbs所在文件夹,执行以下命令,命令中的DBEXCH是Exchange虚拟服务器名
![]()
查看原图(大图)
5) 执行后,出现如下信息

查看原图(大图)
6) 确认注册表HKEY_LOCAL_MACHINE\Software\Microsoft\Search\1.0\Databases中没有Exchange虚拟服务器相关的注册项

查看原图(大图)
7) 停止并启动mssearch服务

8) 在群集管理器中删除Exchange System Attendant

9) 重新添加Exchange System Attendant资源;
10) 将Exchange虚拟服务器bring online,这时就会发现能正常online了,
再次测试故障转移,发现问题解决。
- 最新评论
