|
|
发表于 2006-5-13 12:05:35
|
显示全部楼层
From the docs:
listen
If enabled, vsftpd will run in standalone mode. This means that vsftpd must not be run from an inetd of some kind. Instead, the vsftpd executable is run once directly. vsftpd itself will then take care of listening for and handling incoming connections.
可以试一下用xinetd来起动vsftp
将listen 的yes 和 no属性分别作测试
以及这2个脚本作一下测试。看能解决不能
/etc/xinted.d/vsftpd
第1份脚本
service ftp
{
disable = no
socket_type = stream
wait = no
user = root
server = /usr/sbin/vsftpd nice
= 10
}
第2份脚本
service ftp
{
disable = no
socket_type = stream
wait = no
user = root
server = /usr/sbin/vsftpd nice
server_args = nice = 10
} |
|