尝试启动网站时收到错误500.19

时间:2019-04-09 19:02:30

标签: iis asp.net-core

我们正在从运行IIS 7.5的2008 r2服务器迁移网站。当我尝试移动的第一个程序是asp.net内核时,出现错误HTTP Error 500.19-Internal Server Error,错误代码为0x8007000d。不幸的是,这开始了我的Internet搜索,我没有配置错误,该错误会大大缩小搜索范围,并且我发现所有解决方案都无效。该代码可以在旧服务器上正常工作,并且我的代码中没有指定cpu的任何内容,因此未将其设置为32位。

我尝试过的所有内容都指向无法访问web.config文件的方向。我说的原因之一是,当我尝试打开配置编辑器时,我收到以下错误信息,即我正在使用的web.config数据无效(HRESULT异常:0x8007000D)。

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <location path="." inheritInChildApplications="false">
    <system.webServer>
      <handlers>
        <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
      </handlers>
      <aspNetCore processPath="dotnet" arguments=".\Brochure_Fulfillment.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" />
    </system.webServer>
  </location>
</configuration>
<!--ProjectGuid: e089189f-00f3-48ee-9532-1c03776dad6a-->

0 个答案:

没有答案