1

我们有 azure 托管服务,现在我需要在其上设置 ARR(应用程序请求路由)。我关注了博客http://robindotnet.wordpress.com/2011/07/并且 ARR 工作正常。现在我需要为此启用磁盘缓存,我正在尝试以下命令:

%windir%\system32\inetsrv\appcmd.exe set config -section:system.webServer/diskCache /+"[path='c:\cache',maxUsage='0']" /commit:apphost >> C:\setDiskCache.txt

但出现以下错误:错误(消息:新的 driveLocation 对象缺少必需的属性。无法添加类型为“driveLocation”的重复集合条目,其唯一键属性“path”设置为“c:\cache”。)

并且此文件夹中没有缓存任何内容。任何方向或帮助表示赞赏。

以下是完整的 cmd 文件供参考:

cd /d "%~dp0"

start /wait msiexec.exe /i webfarm_amd64_en-US.msi /qn /log C:\installWebfarmLog.txt
start /wait msiexec.exe /i requestRouter_amd64_en-US.msi /qn /log C:\installARRLog.txt

%windir%\system32\inetsrv\appcmd.exe set config -section:system.webServer/proxy /enabled:"True" /reverseRewriteHostInResponseHeaders:"False" /preserveHostHeader:"True" /commit:apphost >> C:\setProxyLog.txt

%windir%\system32\inetsrv\appcmd.exe set config -section:applicationPools -applicationPoolDefaults.processModel.idleTimeout:00:00:00 >> C:\setAppPool.txt

%windir%\system32\inetsrv\appcmd.exe set config -section:system.webServer/diskCache /+"[path='c:\cache',maxUsage='0']" /commit:apphost >> C:\setDiskCache.txt

exit /b 0

我可以在这里为 IIS 找到相同的东西 [http://www.iis.net/learn/extensions/configuring-application-request-routing-(arr)/configure-and-enable-disk-cache-in-application- request-routing],可以手动启用。但是我们需要以编程方式启用它。

4

1 回答 1

1

通常情况下,错误消息会提示原因。问题是每个驱动器位置值只能有一个条目。这意味着脚本第一次运行良好,但第二次它会抛出,因为该值已被应用。

您无法使用 appcmd 删除节点(它不支持清除集合),但您可以使用文本编辑器(此文件:%windir%\System32\inetsrv\config\applicationHost.config)。或者您可以运行 powershell 脚本:

Import-Module WebAdministration
Remove-WebConfigurationProperty  -pspath 'MACHINE/WEBROOT/APPHOST'  -filter "system.webServer/diskCache" -name "."

在任何一种情况下,这都是将被操纵的节点:

<driveLocation path="c:\cache" maxUsage="0" />

之后,您将能够重新运行您的代码。

于 2013-11-21T19:59:50.447 回答