4

按照本教程中的步骤,在inetmgr中点击“Modules”后的“Setting up with IIS 7.5”第一项,出现如下错误:

模块错误

完整图片:http: //i.stack.imgur.com/QCM4s.png

RavenDB 中的 Web.config

<configuration>
    <appSettings>
        <add key="Raven/DataDir" value="~\Data"/>
        <add key="Raven/AnonymousAccess" value="Get"/>
    </appSettings>
    <system.webServer>
        <handlers>
            <add name="All" path="*" verb="*" type="Raven.Web.ForwardToRavenRespondersFactory, Raven.Web"/>
        </handlers>
        <modules runAllManagedModulesForAllRequests="true">
            <remove name="WebDAVModule" />
        </modules>
    </system.webServer>
    <runtime>
        <loadFromRemoteSources enabled="true"/>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
            <probing privatePath="Analyzers"/>
        </assemblyBinding>
    </runtime>
</configuration>

应用程序主机配置

http://pastebin.com/UJTJfB9f

尝试

几次尝试,我试图改变

这..

<section name="modules" allowDefinition="MachineToApplication" overrideModeDefault="Deny" />

到这个..

<section name="modules" allowDefinition="MachineToApplication" overrideModeDefault="Allow" />

结果

尝试访问“在 inetmgr 模块中工作!”时

但是RavenDB Studio 不起作用。下图:

错误 RavenDB Studio


Config Error
   This configuration section cannot be used at this path. This happens when the section is locked at a parent level. Locking is either by default (overrideModeDefault="Deny"), or set explicitly by a location tag with overrideMode="Deny" or the legacy allowOverride="false".  

Config File
   \\?\C:\Users\Riderman\RavenDB-Build-960\Web\web.config 
4

1 回答 1

3

检查您的服务器 web.config 并overrideModeDefault从更改DenyAllow.

<configSections>
  <sectionGroup name="system.webServer">
    <section name="handlers" overrideModeDefault="Deny" /> 
    <section name="modules" allowDefinition="MachineToApplication" overrideModeDefault="Deny" />

您还可以在 IIS 管理控制台中管理 Web 服务器级别的部分(只需在左窗格中选择服务器),然后选择“功能委派”:

替代文字

正如您在上图中看到的,所有功能都是读/写。目前在我的机器上,模块功能是只读的,所以我需要将其更改为读/写 - 在设置功能委派的右侧窗格中,只需单击读/写...

于 2012-06-18T14:45:27.617 回答