|
|
我的FTP服务无法启用,我用的系统是Suse 10.1
系统信息:
mit:/etc/init.d # ./xinetd restart
Shutting down xinetd: done
Starting INET services. (xinetd) done
mit:/etc/init.d # ./vsftpd start
Starting vsftpd startproc: exit status of parent of /usr/sbin/vsftpd: 1
failed
/etc/xinetd/vsftp.conf文件内容如下:
# Access rights
anonymous_enable=YES
local_enable=NO
write_enable=NO
anon_upload_enable=NO
anon_mkdir_write_enable=NO
anon_other_write_enable=NO
# Security
anon_world_readable_only=YES
connect_from_port_20=YES
hide_ids=YES
pasv_min_port=50000
pasv_max_port=60000
# Features
xferlog_enable=YES
ls_recurse_enable=NO
ascii_download_enable=NO
async_abor_enable=YES
# Performance
one_process_model=YES
idle_session_timeout=120
data_connection_timeout=300
accept_timeout=60
connect_timeout=60
anon_max_rate=50000
/etc/vsftpd文件内容如下
# vsftpd is the secure FTP server.
service ftp
{
disable = no
socket_type = stream
wait = no
user = root
server = /usr/local/vsftpd
per_source = 5
instances = 200
no_access = 192.168.1.3
banner_fail = /etc/vsftpd.busy_banner
log_on_success += PID HOST DURATION
log_on_failure += HOST
}
请问大家这是为什么啊? 在YaST中,启用vsftp时,也出现相同的错误,不过返回错误码是7(未启用) |
|