1

我在 Window 8 机器上安装了 SharePoint 2013。我正在尝试创建一个 Web 应用程序,它需要永远。创作过程永远不会停止。我检查了应用程序事件日志并发现了这个错误:

*机器“SHAREPOINT2013C (SharePoint - 43000(_LM_W3SVC_1458308317_ROOT))” ping 验证失败,自“2013 年 1 月 22 日凌晨 3:56:48”以来一直不可用。*

在网上搜索但找不到任何适合我的东西。任何人都可以提出解决问题的方法吗?提前非常感谢。

4

4 回答 4

1

Below are my findings:

In order to recognize routing targets IIS has to be able to process SPPING HTTP method

To test run this code in Powershell:

    $url = "http://your-Routing-Target-Server-Name"
    $myReq = [System.Net.HttpWebRequest]::Create($url)
    $myReq.Method = "SPPING";
    $response = $myReq.GetResponse();
    $response.StatusCode

If you get the following error message: Exception calling "GetResponse" with "0" argument(s): "The remote server returned an error: (405) Method Not Allowed." that means that web front end is not set up to process SPPING HTTP method

To resolve the issue run the following commands on each routing target server:

    Import-Module WebAdministration
    add-WebConfiguration /system.webserver/handlers "IIS:\" -value @{
        name =          "SPPINGVerbHandler"
        verb =          "SPPING"
        path =          "*"
        modules =       "ProtocolSupportModule"
        requireAccess = "None"
    }

This will add a handler for SPPING verb to IIS configuration.

Run the test script again to make sure this works.

于 2013-07-08T21:49:33.363 回答
0

因此,这与在 SharePoint 2013 上的 WFE 服务器上运行的请求管理服务有关。请求管理服务没有任何价值,因为您只有一台服务器。如果您在单个服务器场上禁用此服务,这些消息将消失,您的 Web 应用程序创建性能将大大提高。

马克林戈

于 2013-04-18T14:48:59.770 回答
0

我最近遇到了这个问题,我创建了新的 Web 应用程序,它显示了一个“它应该不会花很长时间”的弹出窗口,然后过了一段时间它显示了一个连接失败页面。我浏览到新 Web 应用程序的虚拟目录文件夹,发现该文件夹完全是空的。

然后我做了什么来解决这个问题:

1. Open IIS
2. Go to Applicatin Pools
3. Select Central Admin application pool and right click and select "Advance Settings".
4. There was a property named "Shutdown Time Limit", it was set to "90" by default. I changed it to 400 and clicked OK.

它自动重新启动了应用程序池。然后我再次从中央管理员创建了新的 Web 应用程序,它对我有用。

于 2014-10-28T08:40:30.227 回答
0

我发现这些事件与指定应用程序池的回收时间相关(我的是在早上的特定时间)。不幸的是,他们已登录事件查看器并且无法真正清理它。

于 2015-10-09T21:26:32.157 回答