在Mono Linux下运行ASP.net

时间:2012-02-04 17:37:23

标签: c# asp.net mono

我目前正在调查将我的Web服务器从Windows更改为linux。我目前有一个在我的网站上运行的asp.net程序,我想尝试在单声道Linux上运行。

我已将所有文件从我的Windows服务器复制到我的测试linux服务器但是当我尝试访问该页面时出现以下错误:

  

无法识别的属性'requestValidationMode'   (/srv/www/htdocs/mywebsitedirectory/web.config

以下是web.config文件的副本

<?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=169433
  -->
<configuration>

    <connectionStrings>
  <add name="DownloadManagerDB" connectionString="Server=localhost;Port=3306;Database=downloads;Uid=public;Pwd=54mCuw90;pooling=false;" providerName="MySql.Data.MySqlClient" />
 </connectionStrings>
    <system.web>
    <customErrors mode="Off" />
    <httpRuntime requestValidationMode="2.0" maxRequestLength="16384" />
        <compilation debug="true" targetFramework="4.0">
            <assemblies>
                <add assembly="System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
                <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
                <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" /></assemblies></compilation>
        <authentication mode="Forms">
            <forms loginUrl="~/Account/Login.aspx" timeout="2880" />
        </authentication>
        <membership>
            <providers>
                <clear />
                <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/" />
            </providers>
        </membership>
        <profile>
            <providers>
                <clear />
                <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/" />
            </providers>
        </profile>
        <roleManager enabled="false">
            <providers>
                <clear />
                <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" />
                <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" />
            </providers>
        </roleManager>
    </system.web>
    <system.webServer>
        <modules runAllManagedModulesForAllRequests="true" />
        <defaultDocument>
            <files>
                <clear />
                <add value="index.aspx" />
                <add value="Default.htm" />
                <add value="Default.asp" />
                <add value="index.htm" />
                <add value="default.aspx" />
                <add value="index.html" />
                <add value="iisstart.htm" />
                <add value="index.php" />
            </files>
        </defaultDocument>
    </system.webServer>
</configuration>

看起来好像在错误页面Mono认为它的asp.net版本2实际设置为.net 4.我使用单声道版本2.10.6,它说它支持.net 4.

感谢您提供的任何帮助。

更新: 运行ps auxwww | grep mono

的输出
  

wwwrun 12029 0.0 0.8 48800 8100? Ssl 19:55 0:00   / usr / bin / mono /usr/lib/mono/2.0/mod-mono-server2.exe --filename   / tmp / mod_mono_server_global --nonstop --master root 12177 0.0   0.0 2524 768 pts / 1 S + 20:04 0:00 grep --color = auto mono

1 个答案:

答案 0 :(得分:3)

像@Eugen一样,Rieck指出,你需要配置mod-mono-server4而不是server2。

关注本文,

http://docs.orchardproject.net/Documentation/Running-Orchard-on-Mono?Code=1

你应该进入你的Apache设置,并将MonoServerPath更改为/ usr / bin / mod-mono-server4(或盒子上的有效路径)然后你可以再次测试以查看是否可以正确处理这个属性。 / p>

相关问题