turbolinux7下的ftp问题
turbolinux7已经在将ftp服务开启(将etc/xinetd.d/tftp 中disable改为no)
用chkconfig --list 可以看到ftp服务的状态为on
但是为什么仍旧无法登陆ftp呢?
显示:ftp: connect: Connection refused
另外,对ftp的配置是在哪个文件里面?(例如制定访问目录、用户权限等)
请教各位高手!(不想另外安装其他vsftp等服务器软件)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
连接问题解决了,原来turbo下自带了proftpd,但是没有自启动,需要修改用命令:turboservice将proftpd启动。
现在能够ftp连接,但是始终无法正常登陆,显示530错误,例如
[root@rxy proftpd]# ftp rxy
Connected to rxy.
220 ProFTPD 1.2.1 Server (ProFTPD Default Installation) [rxy]
Name (rxy:root): root
331 Password required for root.
Password:
530 Login incorrect.
Login failed.
这是为何呢?
我的配置文件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
# "nobody" and "ftp" for normal operation and anon.
ServerName "roFTPD Default Installation"
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 nobody
# The PersistentPasswd directive controls how proftpd handles authentication
# Note: NIS or NIS+ users will most likely want to disable this feature,
# regardless of proftpd's detected configuration defaults.
# Failure to disable this will make your NIS/NIS+ maps not work!
PersistentPasswd off
# The ExtendedLog directive allows customizable logfiles to be generated,
# either globally or per VirtualHost. The filename argument must contain
# an absolute pathname to a logfile which will be appended to when proftpd star
s.
# Multiple logfiles (potentially with different command classes and formats) ca
be
# created.
ExtendedLog /var/log/proftpd.log
# Normally, we want files to be overwriteable.
<Directory /*>;
AllowOverwrite on
</Directory>;
# A basic anonymous configuration, no upload directories.
<Anonymous /home/ftp>;
User ftp
Group ftp
# We want clients to be able to login with "anonymous" as well as "ftp"
UserAlias anonymous ftp
# If you want to provide anonymous ftp service, please
# set "RequireValidShell off".
RequireValidShell off
# Limit the maximum number of anonymous logins
MaxClients 10
# We want 'welcome.msg' displayed at login, and '.message' displayed
# in each newly chdired directory.
DisplayLogin welcome.msg
DisplayFirstChdir .message
# Limit WRITE everywhere in the anonymous chroot
# <Limit WRITE>;
# DenyAll
# </Limit>;
</Anonymous>;
RequireValidShell off
请有proftpd经验的朋友指教!谢谢了!
大家帮忙啊!
我也碰到如此棘手的问题,现在还没有解决.