错误截图错误日志位置:C:\ProgramFiles\CommonFiles\microsoftshared\WebServerExtensions\15\LOGS主要错误ThecurrentuserisnotanSharePointServerfarmadministrator.处理过程查看了当前User确实不是场管理员,但......
2022-04-11 67 SharePoint ERROR the current user not Server farm 错误
错误截图
创建完毕工作流,发布的时候报错,保存没有问题。
错误信息
Microsoft.SharePoint.SPEndpointAddressNotFoundException: 没有适用于此应用程序的地址。 在 Microsoft.SharePoint.SPRoundRobinServiceLoadBalancer.BeginOperation() 在 Microsoft.SharePoint.Administration.SPServiceApplicationProxyBase`1.ExecuteOnChannel(Boolean requireDelegation, Action`1 codeBlock) 在 Microsoft.SharePoint.AppManagement.AppManagementServiceApplicationProxy.GetScaleOutDatabaseMap() 在 Microsoft.SharePoint.SPScaleOutDatabaseMap.GetMapCacheEntriesForProxy
解决方案
使用PowerShell创建SPSubscriptionSettingsServiceApplication和SPSubscriptionSettingsServiceApplicationProxy两个服务应用程序,创建完毕错误就解决了。
$account = Get-SPManagedAccount spsetupadmin$appPool = New-SPServiceApplicationPool -Name SubscriptionServiceAppPool -Account $account$serviceApp = New-SPSubscriptionSettingsServiceApplication -ApplicationPool $appPool -name "Subscription Settings Service Application" -DatabaseName "SubscriptionSettingsDB"$serviceAppProxy = New-SPSubscriptionSettingsServiceApplicationProxy -ServiceApplication $serviceApp
创建完毕截图:
报错是因为缺少这应用程序和代理应用程序,创建完毕以后,工作流就可以正常运行了。
结束语
这个错误不是很常见,自己搜了很久帖子才发现解决方法,总结一下分享出来,希望遇到的人看到,能够有所启示。
相关文章
SharePoint2013爬网报错AnunrecognizedHTTPresponsewasreceivedwhenattemptingtocrawlthisitem.Verifywhethertheitemcanbeaccessedusingyourbrowser.然后登陆网站,发现在服务器上输入3次用户名密码白页,考虑到......
2022-04-11 449 SharePoint ERROR unrecognized HTTP response was received
最近使用SharePoint中,遇到一个需要重命名网站集的需求,主要是网站用数据库备份/还原的方式,想要改网站集的地址,然后搜了一下PowerShell:$site=Get-SPSite-Identityhttp://server/sites/Demo$site.......
2022-04-11 299 SharePoint重命名网站集名称