FileZilla无法连接到我的XAMPP服务器?


0

我已经配置了XAMPP proftpd.conf文件,如下所示:

# This is a basic ProFTPD configuration file (rename it to
# 'proftpd.conf' for actual use.  It establishes a single server
# and a single anonymous login.  It assumes that you have a user/group
# "daemon" and "ftp" for normal operation and anon.

ServerName          "ProFTPD"
ServerType          standalone
DefaultServer           on

# Port 21 is the standard FTP port.
Port                21
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask               022

# To prevent DoS attacks, set the maximum number of child processes
# to 30.  If you need to allow more than 30 concurrent connections
# at once, simply increase this value.  Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd)
MaxInstances            30

# Set the user and group that the server normally runs at.
User nobody
Group admin

# Normally, we want files to be overwriteable.
<Directory /Applications/XAMPP/xamppfiles/htdocs/*>
  AllowOverwrite        on
</Directory>

# only for the web servers content
DefaultRoot /Applications/XAMPP/xamppfiles/htdocs

<Limit SITE_CHMOD>
  DenyAll
</Limit>

# daemon gets the password "xampp"
UserPassword nobody wRPBu8u4YP0CY

# daemon is no normal user so we have to allow users with no real shell
RequireValidShell off

# daemon may be in /etc/ftpusers so we also have to ignore this file
#to login with "OSX Users"
AuthPAM on
AuthPAMConfig ftpd
UseFtpUsers off

我已经使用以下参数配置了FileZilla:

user: nobody
pass: wRPBu8u4YP0CY
host: 192.168.1.17
port: 21

我的参数有什么问题?我想让我的同事通过FTP访问我的本地主机


2
FileZilla日志中的错误消息是什么?
Cyber​​Jacob

Stato:Connessione的192.168.1.17:21 ... Stato:Connessione stabilita,位于attesa del messaggio di benvenuto中。Stato:服务器不支持,不支持FTP TLS。Comando:用户无人Risposta:331没有人需要密码Comando:PASS ************* Risposta:530登录错误。错误:错误的批评家:不可能的同事服务器
Sasha Chirico

我已经更改了TLS配置,现在可以解决此错误,但是为什么它向我报告登录错误?这不是真的,我有粘贴和复制的完美..
萨沙·基里科
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.