« Previous Next »

Thread: 2nd FTP does not work on Windows Server 2008

Last post 01-18-2009 2:33 PM by JAugusto. 7 replies.

Average Rating Rate It (5)

RSS

Page 1 of 1 (8 items)

Sort Posts:

  • 01-17-2009, 5:34 PM

    • JAugusto
    • Not Ranked
    • Joined on 11-28-2007, 9:33 PM
    • Rio de Janeiro
    • Posts 9

    2nd FTP does not work on Windows Server 2008

    I have Default FTP installed and running. ftp://zollern.portais.net There is a File "FTP Default.Txt" to show the location.

    I have many Internet IPs on my Windows Server 2008

    I publish another FTP with new url to a custom windows directory, but the New FTP point to Default FTP. ftp://public.docs.zollern.portais.net There is a File "FTP Public DOCs.Txt" to show the location, but only show "FTP Default.Txt".

    Public Docs is also a web site http://public.docs.zollern.portais.net/ (works fine) FTP was published in this Site.

    For this test i use anonymous user.

    Each FTP use one IP.

    I install FTP Filezilla (from Sourceforge.net) with ftp://docs.zollern.portais.net and works fine. (why is easy to use non Microsoft FTP?)

    I test with FTP Client from Windows Server 2008

    C:\Users\Administrator>ftp
    ftp> open public.docs.zollern.portais.net
    Connected to public.docs.zollern.portais.net.
    Connection closed by remote host.

    Why Windows Server 2008 FTP does not work well?

    This host is stand alone on Internet with out local network.

    Please Help

    José Augusto Guimarães

  • 01-17-2009, 9:47 PM In reply to

    Re: 2nd FTP does not work on Windows Server 2008

    Are you using the builtin FTP with 2k8 or FTP 7.0?  I would suggest starting here.

    http://learn.iis.net/page.aspx/301/creating-a-new-ftp-site/

    Steve Schofield
    Windows Server MVP - IIS
    http://weblogs.asp.net/steveschofield


    http://www.IISLogs.com
    Log archival solution
    Install, Configure, Forget
  • 01-17-2009, 11:29 PM In reply to

    • JAugusto
    • Not Ranked
    • Joined on 11-28-2007, 9:33 PM
    • Rio de Janeiro
    • Posts 9

    Re: 2nd FTP does not work on Windows Server 2008

    Hello Steve Schofield,

    I am using FTP7 for IIS 7.0(x86)

    I did this steps many times.

     

  • 01-17-2009, 11:38 PM In reply to

    Re: 2nd FTP does not work on Windows Server 2008

    Sorry don't quite get you.. so you using two different ftp prod or just one?

    For MS FTP, have you ftp from the server itself ? does it works ? if not what error msgs?

    Cheers,
    Bernard Cheah
  • 01-18-2009, 12:06 AM In reply to

    • JAugusto
    • Not Ranked
    • Joined on 11-28-2007, 9:33 PM
    • Rio de Janeiro
    • Posts 9

    Re: 2nd FTP does not work on Windows Server 2008

    Two FTP Products installed,

    One is FTP Filezilla from http://filezilla-project.org/ (non Microsoft) running on IP 70.38.66.60 ftp://docs.zollern.portais.net works fine (config to no anonymous access, no windows users)

    Another two FTP Sites is Microsoft FTP 7 for ISS 7 using Publish Service, 1st works fine on Default FTP ( IP 70.38.66.51) but does not work on 2nd (IP 70.38.66.61 for Public Docs/IP 70.38.66.61 for Private Docs). All FTPs using directories on 2nd partition (Drive D:)

    Please take a look at http://forums.iis.net/t/1154398.aspx, may be the same problem.

     

     

  • 01-18-2009, 12:12 AM In reply to

    Re: 2nd FTP does not work on Windows Server 2008

    1) define - doesn't work. can you start the site? ftp locally ? or ?

    2) the other thread is on IIS authorization rules of built-in account. what is the relationship with this? if all related, pls stick with 1 thread.

    Cheers,
    Bernard Cheah
  • 01-18-2009, 10:33 AM In reply to

    • JAugusto
    • Not Ranked
    • Joined on 11-28-2007, 9:33 PM
    • Rio de Janeiro
    • Posts 9

    Re: 2nd FTP does not work on Windows Server 2008

    Hello Bernard Cheah,

    1) dosen´t work

    using Windows FTP Client

    C:\Users\Administrator>ftp
    ftp> open public.docs.zollern.portais.net
    Connected to public.docs.zollern.portais.net.
    Connection closed by remote host.

    From FTP locally and Remotelly FTP CLient show message
    after connected "Connection closed by remote host".

    ftp> open zollern.portais.net
    Connected to zollern.portais.net.
    220 Microsoft FTP Service
    User (zollern.portais.net:(none)): anonymous
    331 Anonymous access allowed, send identity (e-mail name) as password.
    Password:
    230-Bem Vindo ao FTP Default!
    230 Anonymous user logged in.
    ftp>

    with Defaul FTP is OK!

    2) I don't know if has relationship,
    i just looking for any way to fix Microsoft FTP.

    The FTP pubished at the Site public.docs.zollern.portais.net
    is not shown on FTP Manager (IIS6) launched by IIS7,
    only Default FTP is shown.

    After fix anonymous read only access ( I hope ). I will start to test non
    windows users to read/write access with Custom authentication
    providers (SqlMembershioProvider/SqlRoleProvider).


    The current web.config is:

    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
        <system.webServer>
            <defaultDocument>
                <files>
                    <clear />
                    <add value="Default.htm" />
                    <add value="default.aspx" />
                    <add value="Default.asp" />
                </files>
            </defaultDocument>
            <security>
                <authorization>
                    <add accessType="Allow" users="?" />
                </authorization>
            </security>
        </system.webServer>
        <system.web>
            <roleManager defaultProvider="FTPSqlRoleProvider" enabled="true">
                <providers>
                    <remove name="AspNetWindowsTokenRoleProvider" />
                    <add name="FTPSqlRoleProvider" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" applicationName="/" connectionStringName="LocalSqlServer" />
                </providers>
            </roleManager>
            <authentication mode="Forms" />
            <membership defaultProvider="FTPSqlMembershipProvider">
                <providers>
                    <add name="FTPSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" applicationName="/" connectionStringName="LocalSqlServer" enablePasswordReset="false" enablePasswordRetrieval="false" passwordFormat="Clear" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" />
                </providers>
            </membership>
            <profile defaultProvider="FTPSqlProfilePrivider">
                <providers>
                    <add name="FTPSqlProfilePrivider" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" applicationName="/" connectionStringName="LocalSqlServer" />
                </providers>
            </profile>
            <identity impersonate="false" />
        </system.web>
    </configuration>

    The new Microsoft FTP7 could be able to publish many FTP sites over the same IP, like Sites HTTP?

    PS: I am from Brazil, my mother language is Portuguese. Sory by same English mistake.I am trying to do my best.
     

  • 01-18-2009, 2:33 PM In reply to

    • JAugusto
    • Not Ranked
    • Joined on 11-28-2007, 9:33 PM
    • Rio de Janeiro
    • Posts 9

    Re: 2nd FTP does not work on Windows Server 2008

    I am installing another ASP.Net Site product and it stop with configuration error Message:

     Access to the path 'D:\Portais\Portal\web.config' is denied.

    These features require custom security settings so that the application is able to create and remove files in your website.

    Select the Security tab. Add the appropriate User Account and set the Permissions.

    • If using Windows 2000 - IIS5
      1. the [SERVER]\ASPNET User Account must have Read, Write, and Change Control of the virtual root of your website.

      If using Windows 2003 - IIS6
      1. the NT AUTHORITY\NETWORK SERVICE User Account must have Read, Write, and Change Control of the virtual root of your website.

    I am using Windows Server 2008 with Classic Application Pools.

    The NETWORK SERVICE has full control over the path 'D:\Portais\Portal\ and over the file.

    May be becouse it is a Drive D:, not a system drive?

    It could be the same problem of FTP Sites?

    Please Help

    Thanks

     

Page 1 of 1 (8 items)
Microsoft Communities