在没有访问应用程序池的情况下启动启动模式以始终在MVC应用程序中运行

时间:2015-09-02 20:05:52

标签: asp.net-mvc iis application-pool

我将我的网站托管在我无法访问应用程序池的服务器上。我的网站只有很少的用户,所以它关闭,当有人试图进入时 - 它需要很多时间。所以我想将Start Mode更改为AlwaysRunning并将Preload Enabled设置为True并禁用超时/定期回收,但我在ISS管理器中没有应用程序池(服务器提供程序允许我使用远程iis)。

我该怎么办?这是我的webconfig:

<?xml version="1.0" encoding="utf-8"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=301880
  -->
<configuration>
  <appSettings>
    <add key="webpages:Version" value="3.0.0.0"/>
    <add key="webpages:Enabled" value="false"/>
    <add key="ClientValidationEnabled" value="true"/>
    <add key="UnobtrusiveJavaScriptEnabled" value="true"/>
  </appSettings>
  <system.web>
    <compilation debug="true" targetFramework="4.5"/>
    <httpRuntime targetFramework="4.5"/>
  </system.web>

  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken=""/>
        <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Optimization" publicKeyToken=""/>
        <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0"/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="WebGrease" publicKeyToken=""/>
        <bindingRedirect oldVersion="1.0.0.0-1.5.2.14234" newVersion="1.5.2.14234"/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Helpers" publicKeyToken=""/>
        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.WebPages" publicKeyToken=""/>
        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Mvc" publicKeyToken=""/>
        <bindingRedirect oldVersion="1.0.0.0-5.2.2.0" newVersion="5.2.2.0"/>
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>

1 个答案:

答案 0 :(得分:0)

如果您无权访问您的网站,例如能够更改ApplicationHost.config并且您的托管服务提供商未在控制面板中公开,那么您无法做到这一点。
但是,您可以做的一件事是使用&#34;网站ping服务&#34;可以每隔5分钟左右ping你的网站,具体取决于您的托管服务提供商回收池的时间(空闲超时),以防止它关闭(当然,这可能不会让您的托管服务提供商感到高兴,甚至可能阻止流量)。

只是bing&#34;网站ping服务&#34;而且你会找到很多免费的。如果您使用的是Azure,您可以使用网站可用性服务来执行此操作,并为您提供很好的指标,并从世界上的几个地方进行ping操作。