linux下ftp重启失败
首先,如果正在使用vsftpd,可以先把其停掉,命令:service vsftpd stop,接下来需要编辑/etc/xinetd.d/下的`gssftp配置文件,文件内容如下:
 
 # default: off
 
 # description: The kerberized FTP server accepts FTP connections
 
 # that can be authenticated with Kerberos 5.
 
 service ftp
 
 {
 
 disable = yes
 
 flags = REUSE
 
 socket_type = stream
 
 wait = no
 
 user = root
 
 server = /usr/kerberos/sbin/ftpd
 
 server_args = -l -a
 
 log_on_failure += USERID
 
 }
 
 在文件中,我们要修改的内容有:
 
 1、disable = yes 改为 disable =no ,系统默认ftp功能是无效的,修改使ftp功能生效。
 
 2、server_args = -l -a 改为 server_args = -l。
 
 without -a means : *enable weak authentication*
 
 其中表示使用Kerberos 5验证机制,而一般的ftp是不支持该验证机制的。
 
 修改完毕后,将其保存。
 
 3、重启启动xinetd服务。请执行一下的命令(/etc/xinetd.d/):
 
 service xinetd restart
 
 service vsftpd restart
B. 为什么我Linux系统下的FTP老是启动失败,我是在/etc/vsftpd.user_ist,/etc/vsftpd.ftpusers这俩个文件中
在/var/log 下找找ftp启动的日志吧。看看日志里报什么好绝带错友芦。针对报宏余错去解决问题。
C. linux ftp显示已经安装 但是启动不了服务
1.安装vsftp
yum -y install vsftpd
chkconfig --level 35 vsftpd on
/etc/init.d/vsftpd start
2.然后添加个用户及本地下载个ftp软件测试下
useradd ftptest
passwd ftptest
filezilla下载安装
 
D. linux ftp突然访问不了了,重启出现如下信息,然后ftp仍然访问不了,求教大神啊
service xinetd stop
service vsftpd restart
E. linux ftp开启失败
看一下日志 /var/log/xferlog 、/var/log/messages
看端口用 netstat -an|grep LISTEN|grep 21
另外不要让ftp用22端口,这是sshd用的
F. Linux下ftp没反应,也不报错,就是连不上
长时间没反应表示超时没有连上。
到192.168.1.230上去看一下21端口是否处于正常监听状态
netstat -anp | grep 21
G. Linux启动ftp服务器530 Permission denied解决方法
新在虚拟机下安装了linux。现在我想启动linux自带的ftp服务器:#service  vsftpd  start 。如果想linux启动是自动启动ftp服务器:#chkconfig  vsftpd  on  。
  
 运行putty,以root身份进入,出现了报错  530 Permission denied  ,感觉很奇怪,因以普通用户是可以进入的。
  
 原因是我们 /etc/vsftpd/ftpusers  和  /etc/vsftpd/user_list  禁掉了root这个用户。这时我们需要修改这两个文件。
  
 (1)/etc/vsftpd.user_list的默认文件(则是表示具体用户)
  
 # vsftpd userlist
  
 # If userlist_deny=NO, only allow users in this file
  
 # If userlist_deny=YES (default), never allow users in this file, and
  
 # do not even prompt for a password.
  
 # Note that the default vsftpd pam config also checks /etc/vsftpd.ftpusers
  
 # for users that are denied.
  
 root
  
 bin
  
 daemon
  
 adm
  
 lp
  
 sync
  
 shutdown
  
 halt
  
 mail
  
 news
  
 uucp
  
 operator
  
 games
  
 nobody
  
 这时我们要在 root 前加上 # 。
  
 (2)/etc/vsftpd.ftpusers  的默认文件(所有可以登录该FTP的用户属性)
  
 # Users that are not allowed to login via ftp
  
 root
  
 bin
  
 daemon
  
 adm
  
 lp
  
 sync
  
 shutdown
  
 halt
  
 mail
  
 news
  
 uucp
  
 operator
  
 games
  
 nobody
  
 这时我们要在 root 前加上 # 
  
 拟机装好RedHat后,准备使用filezilla连接,输入IP地址,root用户,密码,快速连接,报错:
  
 530 Permission denied。
  
 故障排除:
  
  1.首先检查系统是否开启了vsftp服务,如果没有开启,先开启该服务。 
  
 方法1.setup--系统服务--自启动服务
  
 方法2.界面设置,service vsftpd restart
  
  2.查看配置 
  
 vsftpd的配置,配置文件中限定了vsftpd用户连接控制配置。
  
 vsftpd.ftpusers:位于/etc目录下。它指定了哪些用户账户不能访问FTP服务器,例如root等。
  
 vsftpd.user_list:位于/etc目录下。该文件里的用户账户在默认情况下也不能访问FTP服务器,仅当vsftpd .conf配置文件里启用userlist_enable=NO选项时才允许访问。
  
 vsftpd.conf:位于/etc/vsftpd目录下。来自定义用户登录控制、用户权限控制、超时设置、服务器功能选项、服务器性能选项、服务器响应消息等FTP服务器的配置。
  
  3.配置修改完成后,执行service vsftpd restart重启vsftpd服务。
