how to check asp.net web app deployment will be successfull or not in LINUX servers ?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • naren27
    New Member
    • Oct 2011
    • 3

    how to check asp.net web app deployment will be successfull or not in LINUX servers ?

    Wants to move my current project which is running successfully ASP.NET from Windows 2008 Server R2 to Linux Red Hat, and along with migrating database from SQL Server to MYSQL. My current ASP.NET executables and DLL should support LINUX. Can anyone help me ?
  • drhowarddrfine
    Recognized Expert Expert
    • Sep 2006
    • 7434

    #2
    You are aware that .NET is a Windows only framework and DLLs only run on Windows? Have you looked into Mono?

    Comment

    • naren27
      New Member
      • Oct 2011
      • 3

      #3
      Yes Mono, it has tool to do analysis of all DLLs which can be run on LINUX, but how to deploy the ASPX executables and the associated dlls to the host. I first try to figure what are dll required. But fortunately only 3 DLLs where required and all from third party dlls.

      Help me steps involved in migrating the deployable version of ASPX into Linux if possible using tool MONO.

      Comment

      • Frinavale
        Recognized Expert Expert
        • Oct 2006
        • 9749

        #4
        ASP.NET applications need to run on a web server using IIS.
        These applications also use the .NET Framework...and of course ASP.NET.

        I have never tried to run an ASP.NET application on a Linux web server because they require IIS (a windows feature), the .NET Framework (the Windows framework), and ASP.NET (also a Windows component).

        You might not be able to run these applications on a Linux box even if you are using MONO because you need IIS.

        Comment

        Working...