为什么我的vsftp服务无法启动?


2

这是我的/etc/vsftpd.conf。

listen=on
anonymous_enable=YES
local_enable=YES
write_enable=YES
chroot_local_user=YES
local_root=/home/ftp
anon_root=/home/ftp
xferlog_enable=YES
xferlog_file=/var/log/vsftpd.log

在控制台中,

service vsftpd start
root@pengsir:/home/debian8# service vsftpd status
● vsftpd.service - vsftpd FTP server
   Loaded: loaded (/lib/systemd/system/vsftpd.service; enabled)
   Active: failed (Result: exit-code) since Sat 2015-10-17 15:37:34 HKT; 4s ago
  Process: 3060 ExecStart=/usr/sbin/vsftpd /etc/vsftpd.conf (code=exited, status=2)
  Process: 3057 ExecStartPre=/bin/mkdir -p /var/run/vsftpd/empty (code=exited, status=0/SUCCESS)
 Main PID: 3060 (code=exited, status=2)

Oct 17 15:37:34 pengsir systemd[1]: vsftpd.service: main process exited, co...NT
Oct 17 15:37:34 pengsir systemd[1]: Unit vsftpd.service entered failed state.
Hint: Some lines were ellipsized, use -l to show in full.

为什么vsftp服务无法启动?


什么是 /var/log/vsftpd.log 说?
MariusMatutiae

cat /var/log/vsftpd.log
it_is_a_literature

输出中什么都没有!!
it_is_a_literature

3
然后手动启动它, /usr/sbin/vsftpd
MariusMatutiae

谢谢@MariusMatutiae。跑完之后 sudo /usr/sbin/vsftpd 它给了我一个无法识别的具体论点。我在参数名称中输入了一个拼写错误。
GraehamF

Answers:


3

我用的时候 sudo /usr/sbin/vsftpd,它给了

500 OOPS: unrecognised variable in config file: allow_ftpd_full_access. 

一旦我评论了那条线, vsftpd 开始。


1
在尝试找到INVALIDARGUMENT的原因并且没有在任何地方找到它之后,找不到如何在vsftpd.conf设置中指出语法或其他问题的解决方案之后,您的解决方案节省了一天。
Alz
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.