在启动vsftpd时系统报successful,但是status却是:vsftpd dead but subsys locked
使用ps -ef | grep ftpd没有结果
使用netstat -a | grep ftpd也没有结果
在ftp时出现
ftp zyl_linux
Connected to zyl_linux.
220 zyl_linux FTP server (Version 5.60) ready.
334 Using authentication type GSSAPI; ADAT must follow
GSSAPI accepted as authentication type
GSSAPI error major: Miscellaneous failure
GSSAPI error minor: No credentials cache found
GSSAPI error: initializing context
GSSAPI authentication failed
334 Using authentication type KERBEROS_V4; ADAT must follow
KERBEROS_V4 accepted as authentication type
Kerberos V4 krb_mk_req failed: You have no tickets cached
Name (zyl_linux:informix): informix
530 Must perform authentication before identifying USER.
Login failed.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> sorry, too many arguments in input line
ftp>
请各位大哥大姐帮忙啊
wolfg 回复于:2005-08-22 17:23:31检查有没有其他ftp server在工作,
220 zyl_linux FTP server (Version 5.60) ready.
这个版本一看就不是vsftpd的
zhan_yl 回复于:2005-08-22 17:36:54怎样检查有没有其他的ftp?
wolfg 回复于:2005-08-22 17:41:50netstat -tlunp|grep 21
看有什么结果
zhan_yl 回复于:2005-08-22 17:49:15tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN 7715/xinetd
wolfg 回复于:2005-08-22 17:50:30再看grep -i ftp /etc/xinetd.d/*
zhan_yl 回复于:2005-08-22 17:53:25/etc/xinetd.d/gssftp:# description: The kerberized FTP server accepts FTP connections
/etc/xinetd.d/gssftp:service ftp
/etc/xinetd.d/gssftp: server = /usr/kerberos/sbin/ftpd
/etc/xinetd.d/rsync:# description: The rsync server is a good addition to an ftp server, as it \
wolfg 回复于:2005-08-22 17:56:16修改/etc/xinetd.d/gssftp这个文件,
disable = no
改成
disable = yes
然后,重启xinetd,service xinetd restart
再重启动vsftpd, service vsftpd restart
zhan_yl 回复于:2005-08-22 17:59:13it's ok. thank you very much.